Andriod 读取网络图片实例代码解析

所属分类: 软件编程 / Android 阅读数: 1969
收藏 0 赞 0 分享

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

一、设计界面

  1、布局文件

  打开res/layout/activity_main.xml文件。

  输入以下代码:

<?xml version="." encoding="utf-"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:orientation="vertical" 
android:layout_width="match_parent" 
android:layout_height="match_parent" > 
<ImageView 
android:id="@+id/imagephoto" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" /> 
</LinearLayout> 

二、程序文件

  打开“src/com.genwoxue.networkphoto/MainActivity.java”文件。

  然后输入以下代码:

package com.genwoxue.networkphoto; 
import java.io.IOException; 
import java.io.InputStream; 
import java.net.HttpURLConnection; 
import java.net.MalformedURLException; 
import java.net.URL; 
import android.app.Activity; 
import android.graphics.Bitmap; 
import android.graphics.BitmapFactory; 
import android.os.AsyncTask; 
import android.os.Bundle; 
import android.widget.ImageView; 
public class MainActivity extends Activity { 
private ImageView imView; 
@Override 
public void onCreate(Bundle savedInstanceState) { 
super.onCreate(savedInstanceState); 
setContentView(R.layout.activity_main); 
imView = (ImageView) findViewById(R.id.imagephoto); 
String imageUrl = "http://img.baidu.com/img/image/ilogob.gif"; 
new NetworkPhoto().execute(imageUrl); 
} 
/* 四个步骤: 
* ()onPreExecute(),执行预处理,它运行于UI线程, 
* 可以为后台任务做一些准备工作,比如绘制一个进度条控件。 
* ()doInBackground(Params...),后台进程执行的具体计算在这里实现, 
* doInBackground(Params...)是AsyncTask的关键,此方法必须重载。 
* 在这个方法内可以使用 publishProgress(Progress...)改变当前的进度值。 
* ()onProgressUpdate(Progress...),运行于UI线程。如果 
* 在doInBackground(Params...) 中使用了publishProgress(Progress...),就会 
* 触发这个方法。在这里可以对进度条控件根据进度值做出具体的响应。 
* ()onPostExecute(Result),运行于UI线程,可以对后台任务的结果做出处理,结果 
* 就是doInBackground(Params...)的返回值。此方法也要经常重载,如果Result为 
* null表明后台任务没有完成(被取消或者出现异常)。 * 
*/ 
//本案例我们仅使用了()和() 
class NetworkPhoto extends AsyncTask<String, Integer, Bitmap> { 
public NetworkPhoto() { 
} 
//doInBackground(Params...),后台进程执行的具体计算在这里实现,是AsyncTask的关键,此方法必须重载。 
@Override 
protected Bitmap doInBackground(String... urls) { 
URL url = null; 
Bitmap bitmap = null; 
HttpURLConnection conn=null; 
InputStream is=null; 
try { 
url = new URL(urls[]); 
} catch (MalformedURLException e) { 
e.printStackTrace(); 
} 
try { 
conn = (HttpURLConnection) url.openConnection(); 
conn.setDoInput(true); 
conn.connect(); 
is = conn.getInputStream(); 
bitmap = BitmapFactory.decodeStream(is); 
is.close(); 
} catch (IOException e) { 
e.printStackTrace(); 
} finally { 
if(conn!=null){ 
conn.disconnect(); 
conn=null; 
} 
if(is!=null) { 
try { 
is.close(); 
} catch (IOException e) { 
e.printStackTrace(); 
} 
is=null; 
} 
} 
return bitmap; 
} 
//onPostExecute(Result),运行于UI线程,可以对后台任务的结果做出处理,结果 
//就是doInBackground(Params...)的返回值。 
@Override 
protected void onPostExecute(Bitmap bitmap) { 
// 返回结果bitmap显示在ImageView控件 
imView.setImageBitmap(bitmap); 
} 
} 
}

三、配置文件

  打开“AndroidManifest.xml”文件。

  然后输入以下代码:

<?xml version="." encoding="utf-"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
package="com.genwoxue.networkphoto" 
android:versionCode="" 
android:versionName="." > 
<uses-sdk 
android:minSdkVersion="" 
android:targetSdkVersion="" /> 
<uses-permission android:name="android.permission.INTERNET" /> 
<application 
android:allowBackup="true" 
android:icon="@drawable/ic_launcher" 
android:label="@string/app_name" 
android:theme="@style/AppTheme" > 
<activity 
android:name="com.genwoxue.networkphoto.MainActivity" 
android:label="@string/app_name" > 
<intent-filter> 
<action android:name="android.intent.action.MAIN" /> 
<category android:name="android.intent.category.LAUNCHER" /> 
</intent-filter> 
</activity> 
</application> 
</manifest> 

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

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

更多精彩内容其他人还在看

Android网络编程之获取网络上的Json数据实例

这篇文章主要介绍了Android网络编程之获取网络上的Json数据实例,本文用完整的代码实例讲解了在Android中读取网络中Json数据的方法,需要的朋友可以参考下
收藏 0 赞 0 分享

Android中的windowSoftInputMode属性详解

这篇文章主要介绍了Android中的windowSoftInputMode属性详解,本文对windowSoftInputMode的9个属性做了详细总结,需要的朋友可以参考下
收藏 0 赞 0 分享

Android网络编程之UDP通信模型实例

这篇文章主要介绍了Android网络编程之UDP通信模型实例,本文给出了服务端代码和客户端代码,需要的朋友可以参考下
收藏 0 赞 0 分享

Android中使用ListView实现漂亮的表格效果

这篇文章主要介绍了Android中使用ListView实现漂亮的表格效果,本文用详细的代码实例创建了一个股票行情表格,需要的朋友可以参考下
收藏 0 赞 0 分享

Android中刷新界面的二种方法

这篇文章主要介绍了Android中刷新界面的二种方法,本文使用Handler、postInvalidate两种方法实现界面刷新,需要的朋友可以参考下
收藏 0 赞 0 分享

Android SDK三种更新失败及其解决方法

这篇文章主要介绍了Android SDK三种更新失败及其解决方法,需要的朋友可以参考下
收藏 0 赞 0 分享

Android学习笔记——Menu介绍(一)

Android3.0(API level 11)开始,Android设备不再需要专门的菜单键。随着这种变化,Android app应该取消对传统6项菜单的依赖。取而代之的是提供anction bar来提供基本的用户功能
收藏 0 赞 0 分享

Android学习笔记——Menu介绍(二)

这次将继续上一篇文章没有讲完的Menu的学习,上下文菜单(Context menu)和弹出菜单(Popup menu)
收藏 0 赞 0 分享

Android学习笔记——Menu介绍(三)

今天继续昨天没有讲完的Menu的学习,主要是Popup Menu的学习,需要的朋友可以参考下
收藏 0 赞 0 分享

Android显示网络图片实例

这篇文章主要介绍了Android显示网络图片的方法,以实例形式展示了Android程序显示网络图片的方法,非常具有实用价值,需要的朋友可以参考下
收藏 0 赞 0 分享
查看更多