TextView显示网络图片,我用android2.3的系统,可以显示图片出来,并且如果图片比较大,应用会卡的现象,肯定是因为使用主线程去获取网络图片造成的,但如果我用android4.0以上的系统运行,则不能显示图片,只显示小方框。

究其原因,是在4.0的系统上执行的时候报错了,异常是:android.os.NetworkOnMainThreadException 经过查文档,原来是4.0系统不允许主线程(UI线程)访问网络,因此导致了其异常。说白了就是在主线程上访问网络,会造成主线程挂起,系统不允许使用了。

原文来自铃不铃不铃的博客:http://www.mjix.com/archives/1046.html

此处有作部分修改,代码独立。图片实现异步加载。解决上述问题

用法,调用代码activity

//TextView 控件
textViewContent = (TextView) getActivity().findViewById(R.id.textview_prodcut_detail_more_zp_content);
//HTML文本
zp_content = "测试图片信息:<br><img src=\"http://b2c.zeeeda.com/upload/2013/05/10/136814766742544.jpg\" />";
//默认图片,无图片或没加载完显示此图片
Drawable defaultDrawable = MainActivity.ma.getResources().getDrawable(R.drawable.stub);
//调用
Spanned sp = Html.fromHtml(zp_content, new HtmlImageGetter(textViewContent, "/esun_msg", defaultDrawable), null);
textViewContent.setText(sp);

HtmlImageGetter类

mport java.io.InputStream;

import android.graphics.Canvas;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.os.AsyncTask;
import android.os.Environment;
import android.text.Html.ImageGetter;
import android.util.Log;
import android.widget.TextView; public class HtmlImageGetter implements ImageGetter{
private TextView _htmlText;
private String _imgPath;
private Drawable _defaultDrawable;
private String TAG = "HtmlImageGetter"; public HtmlImageGetter(TextView htmlText, String imgPath, Drawable defaultDrawable){
_htmlText = htmlText;
_imgPath = imgPath;
_defaultDrawable = defaultDrawable;
} @Override
public Drawable getDrawable(String imgUrl) { String imgKey = String.valueOf(imgUrl.hashCode());
String path = Environment.getExternalStorageDirectory() + _imgPath;
FileUtil.createPath(path); String[] ss = imgUrl.split("\\.");
String imgX = ss[ss.length-1];
imgKey = path+"/" + imgKey+"."+imgX; if(FileUtil.exists(imgKey)){
Drawable drawable = FileUtil.getImageDrawable(imgKey);
if(drawable != null){
drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
return drawable;
}else{
Log.v(TAG,"load img:"+imgKey+":null");
}
} URLDrawable urlDrawable = new URLDrawable(_defaultDrawable);
new AsyncThread(urlDrawable).execute(imgKey, imgUrl);
return urlDrawable;
} private class AsyncThread extends AsyncTask<String, Integer, Drawable> {
private String imgKey;
private URLDrawable _drawable; public AsyncThread(URLDrawable drawable){
_drawable = drawable;
} @Override
protected Drawable doInBackground(String... strings) {
imgKey = strings[0];
InputStream inps = NetWork.getInputStream(strings[1]);
if(inps == null) return _drawable; FileUtil.saveFile(imgKey, inps);
Drawable drawable = Drawable.createFromPath(imgKey);
return drawable;
} public void onProgressUpdate(Integer... value) { } @Override
protected void onPostExecute(Drawable result) {
_drawable.setDrawable(result);
_htmlText.setText(_htmlText.getText());
}
} public class URLDrawable extends BitmapDrawable { private Drawable drawable; public URLDrawable(Drawable defaultDraw){
setDrawable(defaultDraw);
} private void setDrawable(Drawable ndrawable){
drawable = ndrawable;
drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable
.getIntrinsicHeight());
setBounds(0, 0, drawable.getIntrinsicWidth(), drawable
.getIntrinsicHeight());
} @Override
public void draw(Canvas canvas) {
drawable.draw(canvas);
}
}
}

NetWork 类

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.zip.GZIPInputStream;
import java.util.zip.InflaterInputStream; import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.entity.BufferedHttpEntity;
import org.apache.http.impl.client.DefaultHttpClient; import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.util.Log; public class NetWork {
private static String TAG = "NetWork"; public static String getHttpData(String baseUrl){
return getHttpData(baseUrl, "GET", "", null);
} public static String postHttpData(String baseUrl, String reqData){
return getHttpData(baseUrl, "POST", reqData, null);
} public static String postHttpData(String baseUrl, String reqData, HashMap<String, String> propertys){
return getHttpData(baseUrl, "POST", reqData, propertys);
} /**
* 获取赛事信息
* @return
*/
public static String getHttpData(String baseUrl, String method, String reqData, HashMap<String, String> propertys){
String data = "", str;
PrintWriter outWrite = null;
InputStream inpStream = null;
BufferedReader reader = null; HttpURLConnection urlConn = null;
try{
URL url = new URL(baseUrl);
urlConn = (HttpURLConnection)url.openConnection();
//启用gzip压缩
urlConn.addRequestProperty("Accept-Encoding", "gzip, deflate");
urlConn.setRequestMethod(method);
urlConn.setDoOutput(true);
urlConn.setConnectTimeout(3000); if(propertys != null && !propertys.isEmpty()){
Iterator<Map.Entry<String, String>> props = propertys.entrySet().iterator();
Map.Entry<String, String> entry;
while (props.hasNext()){
entry = props.next();
urlConn.setRequestProperty(entry.getKey(), entry.getValue());
}
} outWrite = new PrintWriter(urlConn.getOutputStream());
outWrite.print(reqData);
outWrite.flush(); urlConn.connect(); //获取数据流
inpStream = urlConn.getInputStream();
String encode = urlConn.getHeaderField("Content-Encoding"); //如果通过gzip
if(encode !=null && encode.indexOf("gzip") != -1){
Log.v(TAG, "get data :" + encode);
inpStream = new GZIPInputStream(inpStream);
}else if(encode != null && encode.indexOf("deflate") != -1){
inpStream = new InflaterInputStream(inpStream);
} reader = new BufferedReader(new InputStreamReader(inpStream)); while((str = reader.readLine()) != null){
data += str;
}
}catch (MalformedURLException ex){
ex.printStackTrace();
}catch (IOException ex){
ex.printStackTrace();
}finally{
if(reader !=null && urlConn!=null){
try {
outWrite.close();
inpStream.close();
reader.close();
urlConn.disconnect();
} catch (IOException ex) {
ex.printStackTrace();
}
}
} Log.d(TAG, "[Http data]["+baseUrl+"]:" + data);
return data;
} /**
* 获取Image信息
* @return
*/
public static Bitmap getBitmapData(String imgUrl){
Bitmap bmp = null;
Log.d(TAG, "get imgage:"+imgUrl); InputStream inpStream = null;
try{
HttpGet http = new HttpGet(imgUrl);
HttpClient client = new DefaultHttpClient();
HttpResponse response = (HttpResponse)client.execute(http);
HttpEntity httpEntity = response.getEntity();
BufferedHttpEntity bufferedHttpEntity = new BufferedHttpEntity(httpEntity); //获取数据流
inpStream = bufferedHttpEntity.getContent();
bmp = BitmapFactory.decodeStream(inpStream); }catch (Exception ex){
ex.printStackTrace();
}finally{
if(inpStream !=null){
try {
inpStream.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
} return bmp;
} /**
* 获取url的InputStream
* @param urlStr
* @return
*/
public static InputStream getInputStream(String urlStr){
Log.d(TAG, "get http input:"+urlStr);
InputStream inpStream = null;
try{
HttpGet http = new HttpGet(urlStr);
HttpClient client = new DefaultHttpClient();
HttpResponse response = (HttpResponse)client.execute(http);
HttpEntity httpEntity = response.getEntity();
BufferedHttpEntity bufferedHttpEntity = new BufferedHttpEntity(httpEntity); //获取数据流
inpStream = bufferedHttpEntity.getContent();
}catch (Exception ex){
ex.printStackTrace();
}finally{
if(inpStream !=null){
try {
inpStream.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
return inpStream;
}
}

FileUtil类

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream; import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.os.Environment;
import android.util.Log; public class FileUtil {
private static int FILE_SIZE = 4*1024;
private static String TAG = "FileUtil"; public static boolean hasSdcard(){
String status = Environment.getExternalStorageState();
if(status.equals(Environment.MEDIA_MOUNTED)){
return true;
}
return false;
} public static boolean createPath(String path){
File f = new File(path);
if(!f.exists()){
Boolean o = f.mkdirs();
Log.i(TAG, "create dir:"+path+":"+o.toString());
return o;
}
return true;
} public static boolean exists(String file){
return new File(file).exists();
} public static File saveFile(String file, InputStream inputStream){
File f = null;
OutputStream outSm = null; try{
f = new File(file);
String path = f.getParent();
if(!createPath(path)){
Log.e(TAG, "can't create dir:"+path);
return null;
} if(!f.exists()){
f.createNewFile();
} outSm = new FileOutputStream(f);
byte[] buffer = new byte[FILE_SIZE];
while((inputStream.read(buffer)) != -1){
outSm.write(buffer);
}
outSm.flush();
}catch (IOException ex) {
ex.printStackTrace();
return null; }finally{
try{
if(outSm != null) outSm.close();
}catch (IOException ex) {
ex.printStackTrace();
}
}
Log.v(TAG,"[FileUtil]save file:"+file+":"+Boolean.toString(f.exists())); return f;
} public static Drawable getImageDrawable(String file){
if(!exists(file)) return null;
try{
InputStream inp = new FileInputStream(new File(file));
return BitmapDrawable.createFromStream(inp, "img");
}catch (Exception ex){
ex.printStackTrace();
}
return null;
}
}

Android TextView 显示HTML加图片的更多相关文章

  1. Android中显示gif动态图片

    在android中显示一个静态图片比如png jpg等等都很方便,但是如果要显示一个gif 动态图片就需要进行一些处理. 本文是采用自定义view 然后进行重新onDraw方法来实现 首先自定义Vie ...

  2. android textview 显示一行,且超出自动截断,显示"..."

    android textview 显示一行,且超出自动截断,显示"..." <TextView android:layout_width="wrap_content ...

  3. Android TextView 显示不全的自动补齐方式

    TextView在Android开发中用到的地方应该是很多的.很多时候,TextView会有一行显示不全被截取或者会换行.之前我的解决办法比较笨拙,定死TextView的一行字数长度,最后一个以省略号 ...

  4. Android TextView中 字体加粗方法

    textView.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));//加粗 textView.getPaint().setFakeBoldT ...

  5. android textview显示html问题

    我在textivew中填充了html标签后,末尾端总是有2.3个空行.debug也没发现有什么换行符.空格符,后来查了半天html的标签,发现里面有个<div>标签,这个标签的作用是把内容 ...

  6. Android—基于GifView显示gif动态图片

    android中显示gif动态图片用到了开源框架GifView 1.拷GifView.jar到自己的项目中. 2.将自己的gif图片拷贝到drawable文件夹 3.在xml文件中设置基本属性: &l ...

  7. Android TextView内容过长加省略号,点击显示全部内容

    在Android TextView中有个内容过长加省略号的属性,即ellipsize,用法如下: 在xml中:android:ellipsize="end"    省略号在结尾an ...

  8. Android TextView使用HTML处理字体样式、显示图片等

    一般情况下,TextView中的文本都是一个样式.那么如何对于TextView中各个部分的文本来设置字体,大小,颜色,样式,以及超级链接等属性呢?下面我们通过SpannableString的具体实例操 ...

  9. android textview使用ttf字体显示图片

    最近在研究一个组件时,发现使用textview显示了一张图片,原以为android原生支持,仔细研究了下,是用ttf字体实现的,记录下 网上的介绍文章很多,这里就不啰嗦了,链接 https://www ...

随机推荐

  1. CentOS系统yum源配置修改、yum安装软件包源码包出错解决办法apt.sw.be couldn't connect to host

    yum安装包时报错: Could not retrieve mirrorlist http://mirrorlist.repoforge.org/el6/mirrors-rpmforge error  ...

  2. ntp 控制报文

    //make the procedure into block//2014.7.23 OK//#include "CSocket.h" #define NTP_SERVER_IP ...

  3. leetcode 之Search in Rotated Sorted Array(四)

    描述 Follow up for ”Search in Rotated Sorted Array”: What if duplicates are allowed?    Would this aff ...

  4. plsql实例精讲部分笔记

    转换sql: create or replace view v_sale(year,month1,month2,month3,month4,month5,month6,month7,month8,mo ...

  5. CentOS_Linux服务器系统安装之分区

    在software selection中选择Server with GUI>(Compatibility Libraries.Development Tools和Security Tools) ...

  6. hdu 4726(贪心)

    Kia's Calculation Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others ...

  7. promise应用于ajax

    promise应用于ajax,可以在本页打开控制台,复制代码试验 var url = 'https://www.cnblogs.com/mvc/blog/news.aspx?blogApp=dkplu ...

  8. Asp.Net MVC4 之Url路由

    先来看下面两个个url,对比一下: http://xxx.yyy.com/Admin/UserManager.aspx http://xxx.yyy.com/Admin/DeleteUser/1001 ...

  9. Go语言入门之切片的概念

    切片是对数组的抽象,对切片的改变会改变原数组的值 package main import "fmt" func test6(){ arr:=[...],,,,,,,,,,} s1: ...

  10. 【Mac】appium的环境搭建

    1.下载appium并安装,进入官网下载即可 http://appium.io 2.下载安装pip,因为pip执行命令的安装,会出现某些包的下载失败,因此使用brew进行 https://pypi.o ...