Android实现网络图片浏览器
程序员文章站
2023-11-29 11:01:52
本文实例为大家分享了android网络图片浏览器的制作过程,供大家参考,具体内容如下
一、创建一个“网络图片浏览器的应用程序”,并设计用户交互界面,“网络图片浏览器”对应...
本文实例为大家分享了android网络图片浏览器的制作过程,供大家参考,具体内容如下
一、创建一个“网络图片浏览器的应用程序”,并设计用户交互界面,“网络图片浏览器”对应的布局文件(activity_main.xml)代码如下:
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_main" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingbottom="@dimen/activity_vertical_margin" android:paddingleft="@dimen/activity_horizontal_margin" android:paddingright="@dimen/activity_horizontal_margin" android:orientation="vertical" android:paddingtop="@dimen/activity_vertical_margin" tools:context="com.example.bz0209.myapplication.mainactivity"> <imageview android:layout_weight="1000" android:id="@+id/iv" android:layout_width="fill_parent" android:layout_height="wrap_content" /> <edittext android:singleline="true" android:id="@+id/et_path" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="http://b.hiphotos.baidu.com/image/w%3d310/sign=a439f5b24510b912bfc1f0fff3fdfcb5/83025aafa40f4bfb92c52c5d014f78f0f73618a5.jpg" android:hint="请输入图片路径" /> <button android:onclick="click" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="浏览" /> </linearlayout>
效果图如下:
二、编写界面交互代码(mainactivity),当界面创建好后,需要在mainactivity里面编写与界面交互的代码。用于实现请求指定地址的网络图片,并将服务器返回的图片展现在界面上。具体代码如下:
package com.example.bz0209.myapplication; import android.graphics.bitmap; import android.graphics.bitmapfactory; import android.os.handler; import android.os.message; import android.support.v7.app.appcompatactivity; import android.os.bundle; 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(); } } }; @override 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,"图片路径不能为空",0).show(); } else { //子线程请求网络,android 4.0以后访问网络不能放在子线程中 new thread(){ private httpurlconnection conn; private bitmap bitmap; public void run(){ //链接服务器get请求,获取图片 try{ //创建url对象 url url =new url(path); conn=(httpurlconnection) url.openconnection(); conn.setrequestmethod("get"); conn.setconnecttimeout(5000); conn.setrequestproperty("user-agent","mozilla/4.0 (compatib;msie 6.0;window nt 5.1;"+"sv1;" + ".net4.0c;.net4.0e;net clk 2.0.50727;"+".net clr 3.0..4506.2152;.net clr 3.5.30729; shuame )"); int code=conn.getresponsecode(); if(code==200){ inputstream is=conn.getinputstream(); bitmap= bitmapfactory.decodestream(is); 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; } } }.start(); } } }
三、添加权限:由于网络图片浏览器需要请求网络,因此需要在清单文件中配置相应的权限,具体操作如下图所示:
四、运行浏览图片 ,结果图如下:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。