TextView實現圖文混合編排 一、簡介 在這裡實現圖文混合編排使用的是:TextView中預定義的類似Html的標簽 二、方法 * 1、設置好html標簽的文本 String html="<font>圖片1</font><img src='image1'/>"; html+="<font>圖片2 ...
TextView實現圖文混合編排
一、簡介
在這裡實現圖文混合編排使用的是:TextView中預定義的類似Html的標簽
二、方法
* 1、設置好html標簽的文本
String html="<font>圖片1</font><img src='image1'/>";
html+="<font>圖片2</font><img src='image2'/>";
html+="<font>圖片3</font><img src='image3'/>";
html+="<font>圖片4</font><img src='image4'/>";
html+="<font>圖片5</font><img src='image5'/>";
* 2、為之前的文本聲明Html.fromHtml,方便TextView解析為html標簽
tv_one.setText(Html.fromHtml(text1));
因為有圖片,我們要獲取圖片源,所以上面的那句不行;
所以如下:
CharSequence text=Html.fromHtml(html, new ImageGetter() {中間省略}, null);
new ImageGetter() {中間省略}這部分比較複雜,看實例代碼吧,實質就是取到R文件中圖片對應的ID
* 3、將CharSequence字元串序列的文本text插入到TextView控制項中即可
tv_textAndImage.setText(text);
這裡是charSequence是因為Html.fromHtml方法的返回值是Spanned類型,
看下下麵的類圖特別好懂:
三、代碼實例
效果圖
代碼
fry.ActivityDemo2
1 package fry; 2 3 import java.lang.reflect.Field; 4 5 import com.example.textViewDemo1.R; 6 7 import android.app.Activity; 8 import android.graphics.drawable.Drawable; 9 import android.os.Bundle; 10 import android.text.Html; 11 import android.text.Html.ImageGetter; 12 import android.widget.TextView; 13 14 public class ActivityDemo2 extends Activity{ 15 private TextView tv_textAndImage; 16 @Override 17 protected void onCreate(Bundle savedInstanceState) { 18 // TODO Auto-generated method stub 19 super.onCreate(savedInstanceState); 20 setContentView(R.layout.activity02); 21 setTitle("TextViewDemo2"); 22 tv_textAndImage=(TextView) findViewById(R.id.tv_textAndImage); 23 //第一步,設置文本 24 String html="<font>圖片1</font><img src='image1'/>"; 25 html+="<font>圖片2</font><img src='image2'/>"; 26 html+="<font>圖片3</font><img src='image3'/>"; 27 html+="<font>圖片4</font><img src='image4'/>"; 28 html+="<font>圖片5</font><img src='image5'/>"; 29 //第二步,告訴TextView控制項這是html,並且獲取文本中的圖片源 30 CharSequence text=Html.fromHtml(html, new ImageGetter() { 31 32 public Drawable getDrawable(String source) { 33 // TODO Auto-generated method stub 34 //根據圖片資源ID獲取圖片 35 //getResources就是去找項目裡面的res文件夾 36 Drawable drawable=getResources().getDrawable(getDrawableResurceID(source)); 37 //一定要加上邊界這部分代碼。要不然drawable會因為信息不完整讀不出來圖片 38 //分別是left top width height 39 drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight()); 40 return drawable; 41 } 42 }, null); 43 //第三步、將CharSequence字元串序列的文本text插入到TextView控制項中即可 44 tv_textAndImage.setText(text); 45 46 } 47 /** 48 * 獲取圖片的資源ID 49 * @param imageName 圖片的名稱 50 * @return 圖片對應的ID 51 * 52 */ 53 private int getDrawableResurceID(String imageName){ 54 //利用反射機制取得圖片的id 55 /* 56 * 其實是找com.example.textViewDemo1.R.drawable.image1的值,也就是 57 * public static final int image1=0x7f020001; 58 * 也就是0x7f020001 59 * 例如image1,返回的就是0x7f020001 60 */ 61 try { 62 Field field=R.drawable.class.getField(imageName); 63 return Integer.parseInt(field.get(null).toString()); 64 } catch (Exception e) { 65 // TODO Auto-generated catch block 66 e.printStackTrace(); 67 } 68 69 return 0; 70 71 } 72 }
/textViewDemo1/res/layout/activity02.xml
1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 android:orientation="vertical" > 6 <TextView 7 android:id="@+id/tv_textAndImage" 8 android:layout_width="match_parent" 9 android:layout_height="wrap_content" 10 /> 11 12 </LinearLayout>