首先涉及到几点:
1.从url读取图片代码(asyncTask)
2.生成图片drawable并加载到imageview
首先,一个大大的imageview是必不可少的啦
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.read_image_from_url.MainActivity" >
<ImageView
android:id="@+id/imageview"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ImageView>
</RelativeLayout>
Drawable LoadImageFromWebOperations(String url) {
InputStream is = null;
Drawable d = null;
try {
is = (InputStream) new URL(url).getContent();
d = Drawable.createFromStream(is, "src name");
return d;
} catch (Exception e) {
retu