android文本自动添加图片格式,在Android TextView中显示图片的4种方式详解

我们知道,TextView控件一般是用来显示文本的,而图片一般是用ImageView控件来显示。

那TextView能否显示图片呢?答案是肯定的!下面列出常见的4种方式。

1、XML文件中指定属性值

这种方式应该是最常用的了,在TextView的左上右下显示图片,可用

android:drawableLeft

android:drawableTop

android:drawableRight

android:drawableBottom

比如我们要在TextView的顶部设置图片,代码如下:

android:id="@+id/textview_01"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:drawableTop="@drawable/ic_launcher"

android:text="hello_world" />

这种显示方式图片跟文本是居中对齐的,此种方式对应的方法是setCompoundDrawablesWithIntrinsicBounds:

mTextView01.setCompoundDrawablesWithIntrinsicBounds(null,

getResources().getDrawable(R.drawable.ic_launcher, null), null, null);

效果图:

android文本自动添加图片格式,在Android TextView中显示图片的4种方式详解_第1张图片

如果觉得图片离文字太近,也可以设置他们之间的间距,xml或者代码中都可以实现:

android:drawablePadding="10dp"

或者

mTextView01.setCompoundDrawablePadding(10);

2、通过解析HTML来显示图片

这种方式可以显示项目中的图片、本地SDCARD和网络的图片,当然网络的图片必须先下载到本地然后显示。

显示项目中图片

看代码

// 第二种方式:显示项目中的图片mTextView02 = (TextView) findViewById(R.id.textview_02);// 把图片生成的ID加入i

你可能感兴趣的:(android文本自动添加图片格式,在Android TextView中显示图片的4种方式详解)