Android实现网络图片浏览功能

作者:qq_32303793 时间:2023-10-17 14:05:38 

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

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

基本布局很简单,只需要有一个输入图片链接的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实现网络图片浏览功能

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

标签:Android,图片浏览
0
投稿

猜你喜欢

  • SpringBoot线程池和Java线程池的使用和实现原理解析

    2022-06-27 07:22:30
  • 详解Spring Security如何配置JSON登录

    2023-02-08 17:39:07
  • Java动态线程池插件dynamic-tp集成zookeeper

    2023-11-25 03:41:38
  • jmeter添加自定函数的实例(jmeter5.3+IntelliJ IDEA)

    2023-04-14 00:20:54
  • Java流程控制语句最全汇总(上篇)

    2023-11-03 01:57:48
  • Java分页工具类及其使用(示例分享)

    2021-12-13 10:25:12
  • Android 中ListView的Item点击事件失效的快速解决方法

    2021-09-29 02:00:41
  • java教程之java注解annotation使用方法

    2023-11-13 20:18:57
  • Android自定义Notification添加点击事件

    2022-04-06 19:06:30
  • SpringCloud分布式链路追踪组件Sleuth配置详解

    2023-11-28 23:58:42
  • Java中Lambda表达式的使用详解

    2022-01-02 04:52:16
  • 快速了解c# 常量

    2023-06-26 23:35:32
  • android实现注册页面开发

    2023-09-09 14:37:12
  • c# 代码调试技巧和如何远程调试

    2022-09-26 14:11:19
  • SpringBoot使用RestTemplate的示例详解

    2021-10-22 10:11:45
  • Java实现将png格式图片转换成jpg格式图片的方法【测试可用】

    2023-09-30 08:00:22
  • Spring如何消除代码中的if-else/switch-case

    2021-12-12 03:04:47
  • Java 单向队列及环形队列的实现原理

    2022-12-10 22:09:11
  • MyBatis 如何获取子类的属性

    2022-09-12 14:42:39
  • 通过实例了解Java 8创建Stream流的5种方法

    2023-04-13 22:41:02
  • asp之家 软件编程 m.aspxhome.com