andriod 读取网络图片

时间:2024-03-31 10:36:08

来自:http://blog.csdn.net/jianghuiquan/article/details/8641283

 Android手机上,我们常用ImageView显示图片,我们本章获取网络图片并显示在ImageView中。

一、设计界面

  1、布局文件

  打开res/layout/activity_main.xml文件。
  输入以下代码:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent" >
  6. <ImageView
  7. android:id="@+id/imagephoto"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content" />
  10. </LinearLayout>

二、程序文件

  打开“src/com.genwoxue.networkphoto/MainActivity.java”文件。
  然后输入以下代码:

  1. package com.genwoxue.networkphoto;
  2. import java.io.IOException;
  3. import java.io.InputStream;
  4. import java.net.HttpURLConnection;
  5. import java.net.MalformedURLException;
  6. import java.net.URL;
  7. import android.app.Activity;
  8. import android.graphics.Bitmap;
  9. import android.graphics.BitmapFactory;
  10. import android.os.AsyncTask;
  11. import android.os.Bundle;
  12. import android.widget.ImageView;
  13. public class MainActivity extends Activity {
  14. private ImageView imView;
  15. @Override
  16. public void onCreate(Bundle savedInstanceState) {
  17. super.onCreate(savedInstanceState);
  18. setContentView(R.layout.activity_main);
  19. imView = (ImageView) findViewById(R.id.imagephoto);
  20. String imageUrl = "http://img.baidu.com/img/image/ilogob.gif";
  21. new NetworkPhoto().execute(imageUrl);
  22. }
  23. /* 四个步骤:
  24. * (1)onPreExecute(),执行预处理,它运行于UI线程,
  25. * 可以为后台任务做一些准备工作,比如绘制一个进度条控件。
  26. * (2)doInBackground(Params...),后台进程执行的具体计算在这里实现,
  27. * doInBackground(Params...)是AsyncTask的关键,此方法必须重载。
  28. * 在这个方法内可以使用 publishProgress(Progress...)改变当前的进度值。
  29. * (3)onProgressUpdate(Progress...),运行于UI线程。如果
  30. * 在doInBackground(Params...) 中使用了publishProgress(Progress...),就会
  31. * 触发这个方法。在这里可以对进度条控件根据进度值做出具体的响应。
  32. * (4)onPostExecute(Result),运行于UI线程,可以对后台任务的结果做出处理,结果
  33. * 就是doInBackground(Params...)的返回值。此方法也要经常重载,如果Result为
  34. * null表明后台任务没有完成(被取消或者出现异常)。    *
  35. */
  36. //本案例我们仅使用了(2)和(4)
  37. class NetworkPhoto extends AsyncTask<String, Integer, Bitmap> {
  38. public NetworkPhoto() {
  39. }
  40. //doInBackground(Params...),后台进程执行的具体计算在这里实现,是AsyncTask的关键,此方法必须重载。
  41. @Override
  42. protected Bitmap doInBackground(String... urls) {
  43. URL url = null;
  44. Bitmap bitmap = null;
  45. HttpURLConnection conn=null;
  46. InputStream is=null;
  47. try {
  48. url = new URL(urls[0]);
  49. } catch (MalformedURLException e) {
  50. e.printStackTrace();
  51. }
  52. try {
  53. conn = (HttpURLConnection) url.openConnection();
  54. conn.setDoInput(true);
  55. conn.connect();
  56. is = conn.getInputStream();
  57. bitmap = BitmapFactory.decodeStream(is);
  58. is.close();
  59. } catch (IOException e) {
  60. e.printStackTrace();
  61. } finally  {
  62. if(conn!=null){
  63. conn.disconnect();
  64. conn=null;
  65. }
  66. if(is!=null)   {
  67. try {
  68. is.close();
  69. } catch (IOException e) {
  70. e.printStackTrace();
  71. }
  72. is=null;
  73. }
  74. }
  75. return bitmap;
  76. }
  77. //onPostExecute(Result),运行于UI线程,可以对后台任务的结果做出处理,结果
  78. //就是doInBackground(Params...)的返回值。
  79. @Override
  80. protected void onPostExecute(Bitmap bitmap) {
  81. // 返回结果bitmap显示在ImageView控件
  82. imView.setImageBitmap(bitmap);
  83. }
  84. }
  85. }

三、配置文件

  打开“AndroidManifest.xml”文件。

  然后输入以下代码:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.genwoxue.networkphoto"
  4. android:versionCode="1"
  5. android:versionName="1.0" >
  6. <uses-sdk
  7. android:minSdkVersion="10"
  8. android:targetSdkVersion="14" />
  9. <uses-permission android:name="android.permission.INTERNET" />
  10. <application
  11. android:allowBackup="true"
  12. android:icon="@drawable/ic_launcher"
  13. android:label="@string/app_name"
  14. android:theme="@style/AppTheme" >
  15. <activity
  16. android:name="com.genwoxue.networkphoto.MainActivity"
  17. android:label="@string/app_name" >
  18. <intent-filter>
  19. <action android:name="android.intent.action.MAIN" />
  20. <category android:name="android.intent.category.LAUNCHER" />
  21. </intent-filter>
  22. </activity>
  23. </application>
  24. </manifest>

注意:需要在AndroidManifest.xml文件中添加权限:

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