是否可以在Android TextView中显示来自html的嵌入式图像?


87

鉴于以下HTML:

<p>This is text and this is an image <img src="http://www.example.com/image.jpg" />.</p>

是否可以渲染图像?使用此代码段:时mContentText.setText(Html.fromHtml(text));,我得到一个带有黑色边框的青色框,使我相信TextView对img标签是什么有所了解。


Answers:


125

如果您查看文档,Html.fromHtml(text)它会显示:

<img>HTML中的任何标签都将显示为通用替换图像,您的程序可以通过该替换图像进行处理,并用实际图像替换。

如果您不想自己进行替换,则可以使用另一个Html.fromHtml()方法方法采用anHtml.TagHandlerHtml.ImageGetteras参数以及要解析的文本。

在您的情况下,您可以将解析null为,Html.TagHandlerHtml.ImageGetter由于没有默认实现,因此您需要自己实现。

但是,您将要面临的问题是Html.ImageGetter需要同步运行,如果要从Web下载图像,则可能需要异步执行。如果可以在应用程序中添加要显示为资源的任何图像,则ImageGetter实现将变得更加简单。您可以通过以下方式摆脱困境:

private class ImageGetter implements Html.ImageGetter {

    public Drawable getDrawable(String source) {
        int id;

        if (source.equals("stack.jpg")) {
            id = R.drawable.stack;
        }
        else if (source.equals("overflow.jpg")) {
            id = R.drawable.overflow;
        }
        else {
            return null;
        }

        Drawable d = getResources().getDrawable(id);
        d.setBounds(0,0,d.getIntrinsicWidth(),d.getIntrinsicHeight());
        return d;
    }
};

不过,您可能想找出一些更聪明的方法,用于将源字符串映射到资源ID。


4
好。我发现仅使用WebView会更容易。不过,我可以看到您的技术对其他类似情况也很有用。谢谢!
Gunnar Lium

1
从名称获取资源ID的更聪明的方法是使用Resources.getIdentifier(String name,String defType,String defPackage)。
Timuçin

@Gunnar Lium ...但是i8mage不在Webview中显示.. !!有帮助吗?
kgandroid 2015年

如果图像在服务器中,那么我们如何获取图像……在我的情况下,图像是动态的……我不能使用其他图像视图,因为不确定是否必须有图像……
Sourav Roy

19

我已经在我的应用程序中实现了,从pskink.thanx获得了很多参考。

package com.example.htmltagimg;

import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;

import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.LevelListDrawable;
import android.os.AsyncTask;
import android.os.Bundle;
import android.text.Html;
import android.text.Html.ImageGetter;
import android.text.Spanned;
import android.util.Log;
import android.widget.TextView;

public class MainActivity extends Activity implements ImageGetter {
private final static String TAG = "TestImageGetter";
private TextView mTv;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    String source = "this is a test of <b>ImageGetter</b> it contains " +
            "two images: <br/>" +
            "<img src=\"http://developer.android.com/assets/images/dac_logo.png\"><br/>and<br/>" +
            "<img src=\"http://www.hdwallpapersimages.com/wp-content/uploads/2014/01/Winter-Tiger-Wild-Cat-Images.jpg\">";
    String imgs="<p><img alt=\"\" src=\"http://images.visitcanberra.com.au/images/canberra_hero_image.jpg\" style=\"height:50px; width:100px\" />Test Article, Test Article, Test Article, Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,v</p>";
    String src="<p><img alt=\"\" src=\"http://stylonica.com/wp-content/uploads/2014/02/Beauty-of-nature-random-4884759-1280-800.jpg\" />Test Attractions Test Attractions Test Attractions Test Attractions</p>";
    String img="<p><img alt=\"\" src=\"/site_media/photos/gallery/75b3fb14-3be6-4d14-88fd-1b9d979e716f.jpg\" style=\"height:508px; width:640px\" />Test Article, Test Article, Test Article, Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,Test Article,v</p>";
    Spanned spanned = Html.fromHtml(imgs, this, null);
    mTv = (TextView) findViewById(R.id.text);
    mTv.setText(spanned);
}

@Override
public Drawable getDrawable(String source) {
    LevelListDrawable d = new LevelListDrawable();
    Drawable empty = getResources().getDrawable(R.drawable.ic_launcher);
    d.addLevel(0, 0, empty);
    d.setBounds(0, 0, empty.getIntrinsicWidth(), empty.getIntrinsicHeight());

    new LoadImage().execute(source, d);

    return d;
}

class LoadImage extends AsyncTask<Object, Void, Bitmap> {

    private LevelListDrawable mDrawable;

    @Override
    protected Bitmap doInBackground(Object... params) {
        String source = (String) params[0];
        mDrawable = (LevelListDrawable) params[1];
        Log.d(TAG, "doInBackground " + source);
        try {
            InputStream is = new URL(source).openStream();
            return BitmapFactory.decodeStream(is);
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return null;
    }

    @Override
    protected void onPostExecute(Bitmap bitmap) {
        Log.d(TAG, "onPostExecute drawable " + mDrawable);
        Log.d(TAG, "onPostExecute bitmap " + bitmap);
        if (bitmap != null) {
            BitmapDrawable d = new BitmapDrawable(bitmap);
            mDrawable.addLevel(1, 1, d);
            mDrawable.setBounds(0, 0, bitmap.getWidth(), bitmap.getHeight());
            mDrawable.setLevel(1);
            // i don't know yet a better way to refresh TextView
            // mTv.invalidate() doesn't work as expected
            CharSequence t = mTv.getText();
            mTv.setText(t);
        }
    }
}
}

按照下面的@rpgmaker评论我添加了这个答案

是的,您可以使用ResolveInfo

检查您的文件是否受已安装的应用程序支持

使用下面的代码:

private boolean isSupportedFile(File file) throws PackageManager.NameNotFoundException {
    PackageManager pm = mContext.getPackageManager();
    java.io.File mFile = new java.io.File(file.getFileName());
    Uri data = Uri.fromFile(mFile);
    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setDataAndType(data, file.getMimeType());
    List<ResolveInfo> resolveInfos = pm.queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);

    if (resolveInfos != null && resolveInfos.size() > 0) {
        Drawable icon = mContext.getPackageManager().getApplicationIcon(resolveInfos.get(0).activityInfo.packageName);
        Glide.with(mContext).load("").placeholder(icon).into(binding.fileAvatar);
        return true;
    } else {
        Glide.with(mContext).load("").placeholder(R.drawable.avatar_defaultworkspace).into(binding.fileAvatar);
        return false;
    }
}

1
嘿,“ addlevel”和“ setLevel”的目的是什么?
Aeefire 2015年

有没有一种集中图像的方法?如果我们可以点击它们并将它们显示在我们已安装的任何图像查看器应用程序中,那也将很好。
Aspiring Dev

我认为您忘记了我的问题的上下文。我知道如何使用图像查看器应用程序打开图像文件,但是您的回答是将位图放入TextView中,据我所知,当用户在其中单击特定图像时,无法分辨。如果您在textview中有很多图像,这将是一个更大的问题。有没有办法做到这一点?
有抱负的开发人员

但是一个问题是它滚动的速度很慢,我们能对此做些什么吗?
Pratik Jamariya

尝试添加平滑的滚动听众
madhu527

16

这就是我使用的方法,不需要您对资源名称进行硬核化,并且如果未找到任何内容,则将首先在您的应用程序资源中查找可绘制资源,然后在库存的android资源中查找可绘制资源-允许您使用默认图标等。

private class ImageGetter implements Html.ImageGetter {

     public Drawable getDrawable(String source) {
        int id;

        id = getResources().getIdentifier(source, "drawable", getPackageName());

        if (id == 0) {
            // the drawable resource wasn't found in our package, maybe it is a stock android drawable?
            id = getResources().getIdentifier(source, "drawable", "android");
        }

        if (id == 0) {
            // prevent a crash if the resource still can't be found
            return null;    
        }
        else {
            Drawable d = getResources().getDrawable(id);
            d.setBounds(0,0,d.getIntrinsicWidth(),d.getIntrinsicHeight());
            return d;
        }
     }

 }

可以这样使用(示例):

String myHtml = "This will display an image to the right <img src='ic_menu_more' />";
myTextview.setText(Html.fromHtml(myHtml, new ImageGetter(), null);

通过Internet的AsyncTask检索,此组合将是完美的。
Francis Rodrigues

1
谢谢!它解决了我的问题。我只需要本地图像,因此只需将它们放到drawable文件夹中,并确保在从html调用它时删除图像扩展即可。
Dody Rachmat Wicaksono

谢谢!但是当心source可能为空,并且getIdentifier()在这种情况下会崩溃。最好添加显式检查。
gmk57

5

我遇到了同样的问题,并且找到了一个非常干净的解决方案:在Html.fromHtml()之后,您可以运行AsyncTask,该AsyncTask遍历所有标签,获取图像,然后显示它们。

在这里您可以找到一些可以使用的代码(但需要一些自定义):https : //gist.github.com/1190397


3

我使用了Dave Webb的答案,但做了一些简化。只要在您的用例中在运行时资源ID保持不变,就不需要真正编写自己的类来实现Html.ImageGetter和使用源字符串。

我所做的是使用资源ID作为源字符串:

final String img = String.format("<img src=\"%s\"/>", R.drawable.your_image);
final String html = String.format("Image: %s", img);

并直接使用它:

Html.fromHtml(html, new Html.ImageGetter() {
  @Override
  public Drawable getDrawable(final String source) {
    Drawable d = null;
    try {
      d = getResources().getDrawable(Integer.parseInt(source));
      d.setBounds(0, 0, d.getIntrinsicWidth(), d.getIntrinsicHeight());
    } catch (Resources.NotFoundException e) {
      Log.e("log_tag", "Image not found. Check the ID.", e);
    } catch (NumberFormatException e) {
      Log.e("log_tag", "Source string not a valid resource ID.", e);
    }

    return d;
  }
}, null);

1

您还可以编写自己的解析器以提取所有图像的URL,然后动态创建新的imageviews并传递url。


1

另外,如果您想自己进行替换,则需要查找的字符是[]。

但是,如果您使用的是Eclipse,则当您在[replace]语句中键入该字母并告诉您它与Cp1252冲突时,它会吓跑-这是一个Eclipse错误。要修复它,请转到

窗口->首选项->常规->工作区->文本文件编码,

然后选择 [UTF-8]


0

万一有人认为资源必须是声明性的,并且将Spannable用于多种语言是一团糟,我做了一些自定义视图

import android.content.Context;
import android.content.res.Resources;
import android.content.res.TypedArray;
import android.graphics.drawable.Drawable;
import android.text.Html;
import android.text.Html.ImageGetter;
import android.text.Spanned;
import android.util.AttributeSet;
import android.widget.TextView;

/**
 * XXX does not support android:drawable, only current app packaged icons
 *
 * Use it with strings like <string name="text"><![CDATA[Some text <img src="some_image"></img> with image in between]]></string>
 * assuming there is @drawable/some_image in project files
 *
 * Must be accompanied by styleable
 * <declare-styleable name="HtmlTextView">
 *    <attr name="android:text" />
 * </declare-styleable>
 */

public class HtmlTextView extends TextView {

    public HtmlTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.HtmlTextView);
        String html = context.getResources().getString(typedArray.getResourceId(R.styleable.HtmlTextView_android_text, 0));
        typedArray.recycle();

        Spanned spannedFromHtml = Html.fromHtml(html, new DrawableImageGetter(), null);
        setText(spannedFromHtml);
    }

    private class DrawableImageGetter implements ImageGetter {
        @Override
        public Drawable getDrawable(String source) {
            Resources res = getResources();
            int drawableId = res.getIdentifier(source, "drawable", getContext().getPackageName());
            Drawable drawable = res.getDrawable(drawableId, getContext().getTheme());

            int size = (int) getTextSize();
            int width = size;
            int height = size;

//            int width = drawable.getIntrinsicWidth();
//            int height = drawable.getIntrinsicHeight();

            drawable.setBounds(0, 0, width, height);
            return drawable;
        }
    }
}

https://gist.github.com/logcat/64234419a935f1effc67跟踪更新(如果有)


0

科特琳

也有可能使用 sufficientlysecure.htmltextview.HtmlTextView

在gradle文件中使用如下所示:

项目gradle文件:

repositories {
    jcenter()
}

应用程式Gradle档案:

dependencies {
implementation 'org.sufficientlysecure:html-textview:3.9'
}

内部xml文件将您的textView替换为:

<org.sufficientlysecure.htmltextview.HtmlTextView
      android:id="@+id/allNewsBlockTextView"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_margin="2dp"
      android:textColor="#000"
      android:textSize="18sp"
      app:htmlToString="@{detailsViewModel.selectedText}" />

上面的最后一行是如果您使用绑定适配器,则代码如下所示:

@BindingAdapter("htmlToString")
fun bindTextViewHtml(textView: HtmlTextView, htmlValue: String) {

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
    textView.setHtml(
        htmlValue,
        HtmlHttpImageGetter(textView, "n", true)
    );
    } else {
        textView.setHtml(
        htmlValue,
        HtmlHttpImageGetter(textView, "n", true)
        );
    }
}

来自github页面的更多信息,非常感谢作者!

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.