Showing posts with label Скачивание картинки по URL. Show all posts
Showing posts with label Скачивание картинки по URL. Show all posts

Thursday, 30 September 2010

Android:The easiest way to load image from URL

The easiest way to download image from URL is to use method Drawable.createFromStream:

main.xml:
<linearlayout android:id="@+id/LinearLayout01" 
android:layout_height="fill_parent" 
android:layout_width="fill_parent" 
xmlns:android="http://schemas.android.com/apk/res/android">
<imageview android:id="@+id/ImageView1" 
android:layout_height="wrap_content" 
android:layout_width="wrap_content">
</imageview></linearlayout>