Android从网络中获得一张图片并显示在屏幕上的实例详解

 更新时间:2017年08月18日 11:32:00   投稿:lqh  
这篇文章主要介绍了Android从网络中获得一张图片并显示在屏幕上的实例详解的相关资料,希望通过本文能帮助大家实现这样的功能,需要的朋友可以参考下

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 获取网路图片并显示的实例,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

相关文章

  • Android ViewFlipper翻转视图使用详解

    Android ViewFlipper翻转视图使用详解

    这篇文章主要为大家详细介绍了Android ViewFlipper翻转视图的使用方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-05-05
  • 自定义Android注解系列教程之注解变量

    自定义Android注解系列教程之注解变量

    这篇文章主要给大家介绍了关于自定义Android注解系列教程之注解变量的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2018-07-07
  • Android实现在map上画出路线的方法

    Android实现在map上画出路线的方法

    这篇文章主要介绍了Android实现在map上画出路线的方法,较为详细的分析了Android在map上绘制路线所涉及的map图调用、画笔的使用、页面布局及权限控制的相关技巧,需要的朋友可以参考下
    2015-07-07
  • Android自定义View实现抖音飘动红心效果

    Android自定义View实现抖音飘动红心效果

    这篇文章主要为大家详细介绍了Android自定义View实现抖音飘动红心效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-05-05
  • Android OkHttp Post上传文件并且携带参数实例详解

    Android OkHttp Post上传文件并且携带参数实例详解

    这篇文章主要介绍了Android OkHttp Post上传文件并且携带参数实例详解的相关资料,需要的朋友可以参考下
    2017-03-03
  • Android中wifi与数据流量的切换监听详解

    Android中wifi与数据流量的切换监听详解

    本文主要介绍了Android中wifi与数据流量的切换监听的方法步骤。具有一定的参考价值,下面跟着小编一起来看下吧
    2017-01-01
  • Android基础知识之tween动画效果

    Android基础知识之tween动画效果

    Android基础知识之tween动画效果,Android一共提供了两种动画,这篇文章主要介绍了Android动画效果之tween动画,感兴趣的小伙伴们可以参考一下
    2016-06-06
  • Android Fragment多层嵌套重影问题的解决方法

    Android Fragment多层嵌套重影问题的解决方法

    这篇文章主要介绍了Android Fragment多层嵌套重影问题的解决方法,从解决bug的思想,导致原因,原理解析等方面找出问题所在原因,最终解决方法就可以简单了,对fragment 多层嵌套问题感兴趣的朋友一起通过本文学习吧
    2016-08-08
  • Android checkbox的listView(多选,全选,反选)具体实现方法

    Android checkbox的listView(多选,全选,反选)具体实现方法

    由于listview的一些特性,刚开始写这种需求的功能的时候都会碰到一些问题,重点就是存储每个checkbox的状态值,在这里分享出了完美解决方法:
    2013-06-06
  • Android 消息分发使用EventBus的实例详解

    Android 消息分发使用EventBus的实例详解

    这篇文章主要介绍了Android 消息分发使用EventBus的实例详解的相关资料,在项目中用了许多Handler和broadcast导致代码冗余,显得杂乱无章,这里使用EventBus来实现相同的功能,需要的朋友可以参考下
    2017-07-07

最新评论