标签:thread+handler networkonmainthreade
本文是自己学习所做笔记,欢迎转载,但请注明出处:http://blog.csdn.net/jesson20121020
当点击按钮时,会将指定地址的网络图片加载在imageVIew中进行显示。
有两种方式将指定地址的网络读取到Bitmap中,然后通过imageView加载显示。
1). 将输入流解码成Bitmap
private static String path = "http://221.203.108.70:8080/jxzy/UploadFiles_4517/201005/2010052615165701.jpg";
public Bitmap getData(){ Bitmap bitmap = null; try { URL url = new URL(path); URLConnection conn = url.openConnection(); conn.connect(); InputStream is = conn.getInputStream(); bitmap = BitmapFactory.decodeStream(is); } catch (MalformedURLException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } return bitmap; }2). 通过字节数据将输入流写入到输入流中,并通过BitmapFactory.decodeByteArray()方法将其转换成Bitmap
public Bitmap getData1(){ Bitmap bitmap = null; ByteArrayOutputStream bos = null; try { URL url = new URL(path); URLConnection conn = url.openConnection(); InputStream is = conn.getInputStream(); bos = new ByteArrayOutputStream(); byte[] data = new byte[1024]; int len = 0; while((len = is.read(data))!= -1){ bos.write(data, 0, len); } byte[] data1 = bos.toByteArray(); bitmap = BitmapFactory.decodeByteArray(bos.toByteArray(), 0, data1.length); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } return bitmap; }
开始也提到了,在android4.0之上不就不能在主线程中直接进行网络请求等操作了,因此为了将网络图片加载到ImageView中,也有两种方法,具体如下:
直接在onCreate()方法中加入以下两行代码,然后直接在主线程中进行读取网络图片的操作。
StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder().detectDiskReads().detectDiskWrites().detectNetwork().penaltyLog().build()); StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder().detectLeakedSqlLiteObjects().detectLeakedClosableObjects().penaltyLog().penaltyDeath().build());
有了这两行代码,当然了,这些只适用android4.0之上,你如果targetSDK在4.0之下,也可以不加这两行代码,直接在主线程中进行读取网络图片的操作,但是这种方法并不推荐。
接下来就是将第一步两种方法得到Bitmap加载到imageView中,主要代码如下:
<span style="white-space:pre"> </span>imageView = (ImageView)findViewById(R.id.imageView); button = (Button)findViewById(R.id.button); button.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub imageView.setImageBitmap(getData()); } });
因为,android也不允许在非UI线程中更新UI,所以不能直接将imageView.setImageBitmap()写在线程中,这就要借助于Handler了,因为Handler是运行在主线程中的,所以在读取网络数据利用Message消息来通知Handler来通知更新UI。主要代码如下:
<span style="white-space:pre"> </span>Handler handler = new Handler(){ public void handleMessage(Message msg) { if(msg.what == 1){ imageView.setImageBitmap(mBitmap); } }; }; Runnable runnable = new Runnable() { @Override public void run() { // TODO Auto-generated method stub Message msg = new Message(); msg.what = 1; //mBitmap = getData(); mBitmap = getData1(); handler.sendMessage(msg); } };接下来,就是在按钮的单击事件中新建一个线程并启动即可。
<span style="white-space:pre"> </span>button = (Button)findViewById(R.id.button); button.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub new Thread(runnable).start(); } });
<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" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context=".MainActivity" > <Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="读取网络图片" /> <ImageView android:id="@+id/imageView" android:layout_width="match_parent" android:layout_height="wrap_content" /> </RelativeLayout>
标签:thread+handler networkonmainthreade
原文地址:http://blog.csdn.net/jesson20121020/article/details/40595537