Android实现网络图片浏览功能

 更新时间:2017年06月03日 14:32:19   作者:qq_32303793  
这篇文章主要为大家详细介绍了Android实现网络图片浏览功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

我们在上网的过程中经常看到各种图片,那你知道它是如何实现的吗?接下来就让我们一块探讨一下。

网络图片的浏览可以分为俩部分,基本的页面布局与界面交互,让我们一步步的来编写。

基本布局很简单,只需要有一个输入图片链接的EditText,一个浏览按钮,一个ImageView就差不多了。下面是简单代码。

<LinearLayout 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:orientation="vertical"
  tools:context=".MainActivity" >

  <ImageView
    android:id="@+id/iv"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_weight="1" />

  <EditText
    android:id="@+id/et_path"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:hint="请输入图片路径"
    android:maxLines="1" />

  <Button
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:onClick="click"
    android:text="浏览" />

</LinearLayout>

值得注意的是这里面的weight不是权重,而是渲染优先级,weight越大,优先级越低。

最重要的自然是界面交互,输入图片的指定地址,便可以将服务器返回的图片展示在界面上,具体如下

package cn.edu.bzu.imageviewdemo;

import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.support.v7.app.AppCompatActivity;
import android.text.TextUtils;
import android.view.View;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.Toast;

import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
public class MainActivity extends AppCompatActivity {

 protected static final int CHANGE_UI = 1;
 protected static final int ERROR = 2;
 private EditText et_path;
 private ImageView iv;
 private Handler handler = new Handler(){
  public void handleMessage(android.os.Message msg) {
   if(msg.what == CHANGE_UI){
    Bitmap bitmap = (Bitmap) msg.obj;
    iv.setImageBitmap(bitmap);
   }else if(msg.what == ERROR){
    Toast.makeText(MainActivity.this, "显示图片错误", 0).show();
   }
  };
 };
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  et_path = (EditText) findViewById(R.id.et_path);
  iv = (ImageView) findViewById(R.id.iv);
 }
 public void click(View view) {
  final String path = et_path.getText().toString().trim();
  if (TextUtils.isEmpty(path)) {
   Toast.makeText(this, "图片路径不能为空", Toast.LENGTH_SHORT).show();
  } else {
   new Thread() {
    public void run() {

     try {
      URL url = new URL(path);  //创建URL对象

      HttpURLConnection conn = (HttpURLConnection) url
        .openConnection();
      // 设置请求的方式
      conn.setRequestMethod("GET");
      //设置超时时间
      conn.setConnectTimeout(5000);

      int code = conn.getResponseCode();

      if (code == 200) {

       InputStream is = conn.getInputStream();

       Bitmap bitmap = BitmapFactory.decodeStream(is);
       //iv.setImageBitmap(bitmap);

       Message msg = new Message();
       msg.what = CHANGE_UI;
       msg.obj = bitmap;
       handler.sendMessage(msg);
      } else {

       Message msg = new Message();
       msg.what = ERROR;
       handler.sendMessage(msg);
      }
     } catch (Exception e) {
      e.printStackTrace();
      Message msg = new Message();
      msg.what = ERROR;
      handler.sendMessage(msg);
     }
    };
   }.start();
  }
 }

}

核心之处便是通过URL对象获取HttpURLConnection,获取服务器返回的输入流

这便是简单的测试结果。有问题欢迎评论交流!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Android MIUI通知类短信权限的坑

    Android MIUI通知类短信权限的坑

    本篇文章主要介绍了Android MIUI通知类短信权限的坑,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-03-03
  • Android 仿京东、拼多多商品分类页的示例代码

    Android 仿京东、拼多多商品分类页的示例代码

    本篇文章主要介绍了Android 仿京东、拼多多商品分类页的示例代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。
    2017-08-08
  • Android常见的几种内存泄漏小结

    Android常见的几种内存泄漏小结

    本篇文章主要介绍了Android常见的几种内存泄漏小结。详细的介绍了内存泄漏的原因及影响和解决方法,有兴趣的可以了解一下。
    2017-03-03
  • Flutter交互并使用小工具管理其状态widget的state详解

    Flutter交互并使用小工具管理其状态widget的state详解

    这篇文章主要为大家介绍了Flutter交互并使用小工具管理其状态widget的state详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-12-12
  • Android10自动连接WiFi问题的解决

    Android10自动连接WiFi问题的解决

    这篇文章主要介绍了Android10自动连接WiFi问题的解决,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2020-03-03
  • Android仿ios年龄、生日、性别滚轮效果

    Android仿ios年龄、生日、性别滚轮效果

    这篇文章主要为大家详细介绍了Android仿ios年龄、生日、性别滚轮效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-11-11
  • View中如何进行手势识别onFling动作实现介绍

    View中如何进行手势识别onFling动作实现介绍

    下面我们就以实现手势识别的onFling动作,在CwjView中我们从View类继承,当然大家可以从TextView等更高层的界面中实现触控,感兴趣的朋友可以了解下哈
    2013-06-06
  • 非常实用的侧滑删除控件SwipeLayout

    非常实用的侧滑删除控件SwipeLayout

    这篇文章主要为大家详细介绍了非常实用的侧滑删除控件SwipeLayout,类似于QQ侧滑点击删除效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-08-08
  • Android 三级NestedScroll嵌套滚动实践

    Android 三级NestedScroll嵌套滚动实践

    这篇文章主要介绍了Android 三级NestedScroll嵌套滚动实践,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2019-02-02
  • Android利用Badge组件实现未读消息小红点

    Android利用Badge组件实现未读消息小红点

    在 App 的运营中,活跃度是一个重要的指标,日活/月活……为了提高活跃度,就发明了小红点。这一篇,来介绍一个徽标(Badge)组件,能够快速搞定应用内的小红点,希望对大家有所帮助
    2023-01-01

最新评论