Android从网络中获得一张图片并显示在屏幕上的实例详解
作者:lqh 时间:2023-11-03 01:17:43
Android从网络中获得一张图片并显示在屏幕上的实例详解
看下实现效果图:
1:androidmanifest.xml的内容
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cn.capinftotech.image"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".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>
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
注意访问网络中的数据需要添加android.permission.INTERNET权限
2:MainActivity的内容
package cn.capinftotech.image;
import java.io.IOException;
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.Toast;
import com.capinfotech.service.ImageService;
public class MainActivity extends Activity {
private static final String TAG = "MainActivity";
private EditText urlPath = null;
private Button button = null;
private ImageView imageView = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
urlPath = (EditText)findViewById(R.id.urlpath);
button = (Button)findViewById(R.id.button);
imageView = (ImageView)findViewById(R.id.imageView);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String urlPathContent = urlPath.getText().toString();
try {
byte[] data = ImageService.getImage(urlPathContent);
Bitmap bitmap = BitmapFactory.decodeByteArray(data, 0, data.length); //生成位图
imageView.setImageBitmap(bitmap); //显示图片
} catch (IOException e) {
Toast.makeText(MainActivity.this, R.string.error, Toast.LENGTH_LONG).show(); //通知用户连接超时信息
Log.i(TAG, e.toString());
}
}
});
}
}
3:ImageService类的内容
package com.capinfotech.service;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import com.capinfotech.utils.StreamTool;
public class ImageService {
public static byte[] getImage(String path) throws IOException {
URL url = new URL(path);
HttpURLConnection conn = (HttpURLConnection)url.openConnection();
conn.setRequestMethod("GET"); //设置请求方法为GET
conn.setReadTimeout(5*1000); //设置请求过时时间为5秒
InputStream inputStream = conn.getInputStream(); //通过输入流获得图片数据
byte[] data = StreamTool.readInputStream(inputStream); //获得图片的二进制数据
return data;
}
}
4:StreamTool的内容
package com.capinfotech.utils;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
public class StreamTool {
/*
* 从数据流中获得数据
*/
public static byte[] readInputStream(InputStream inputStream) throws IOException {
byte[] buffer = new byte[1024];
int len = 0;
ByteArrayOutputStream bos = new ByteArrayOutputStream();
while((len = inputStream.read(buffer)) != -1) {
bos.write(buffer, 0, len);
}
bos.close();
return bos.toByteArray();
}
}
5:程序中用到的字符串资源strings.xml里的内容
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Hello World, MainActivity!</string>
<string name="app_name">图片浏览器</string>
<string name="urlpath">网络图片地址</string>
<string name="button">显示</string>
<string name="error">网络连接超时</string>
</resources>
6:程序布局文件main.xml的内容
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/urlpath"
/>
<EditText
android:id="@+id/urlpath"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="http://www.eoeandroid.com/data/attachment/forum/201107/18/142935bbi8d3zpf3d0dd7z.jpg"
/>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button"
/>
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
以上使用Android 获取网路图片并显示的实例,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
来源:http://blog.csdn.net/woshisap/article/details/6619449
标签:android,网络图片
0
投稿
猜你喜欢
c# 类成员的可访问性代码详解
2022-03-14 22:43:59
C#实现打字小游戏
2023-11-08 01:08:04
C#算法之整数反转
2021-09-24 18:36:49
Spring Boot 启动加载数据 CommandLineRunner的使用
2021-06-17 12:52:21
java面试题之数组中的逆序对
2021-08-05 10:51:02
C#/VB.NET 实现在PDF表格中添加条形码
2022-12-25 19:58:16
蓝牙原理Android代码实现
2023-07-10 20:25:31
SpringBoot+LayIM+t-io 实现好友申请通知流程
2023-07-13 11:41:52
MyBatis源码浅析(一)开篇
2022-09-28 03:28:24
kill命令在Java应用中使用的注意事项小结
2023-11-11 13:01:55
C# 9使用foreach扩展的示例详解
2023-01-27 08:35:56
Android使用AudioManager修改系统音量的方法
2023-11-20 09:10:00
C#网络编程基础之进程和线程详解
2023-03-22 07:38:32
Java基于Javafaker生成测试数据
2023-11-23 09:36:16
C# 标准事件流实例代码
2022-06-21 16:29:14
举例说明自定义C++异常处理的实例
2022-10-25 13:45:27
c#基于Win32Api实现返回Windows桌面功能
2022-11-21 15:29:51
DataGridView冻结列或行、列顺序调整、操作行头列头标题的方法
2021-10-25 06:53:41
Android中 动态改变对话框值的方法
2023-08-17 19:44:30
Java数据类型分类与基本数据类型转换
2023-08-10 08:33:37