0

Is there a method of which I can use to pass in a url with an image and afterwhich have it displayed in the image view of an android application? Sorry if the question sounds simple, i am new to programming and not too sure the technical terms to it.

simplified.
  • 11,977
  • 5
  • 17
  • 8

1 Answers1

1

First you will need the app permission:

<uses-permission android:name="android.permission.INTERNET" />

Secondly, you can load the image from a URL using this answer.

Community
  • 1
  • 1
Keith Adler
  • 20,880
  • 28
  • 119
  • 189