中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

TextView實現圖文混合編排的方法

發布時間:2020-10-12 05:49:50 來源:腳本之家 閱讀:168 作者:飯飯_fan 欄目:移動開發

一、簡介

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類型,

看下下面的類圖特別好懂:

TextView實現圖文混合編排的方法

三、代碼實例

效果圖

TextView實現圖文混合編排的方法

代碼

 fry.ActivityDemo2

package fry;

import java.lang.reflect.Field;

import com.example.textViewDemo1.R;

import android.app.Activity;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.text.Html;
import android.text.Html.ImageGetter;
import android.widget.TextView;

public class ActivityDemo2 extends Activity{
  private TextView tv_textAndImage;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity02);
    setTitle("TextViewDemo2");
    tv_textAndImage=(TextView) findViewById(R.id.tv_textAndImage);
    //第一步,設置文本
    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'/>";
    //第二步,告訴TextView控件這是html,并且獲取文本中的圖片源
    CharSequence text=Html.fromHtml(html, new ImageGetter() {
      
      public Drawable getDrawable(String source) {
        // TODO Auto-generated method stub
        //根據圖片資源ID獲取圖片
        //getResources就是去找項目里面的res文件夾
        Drawable drawable=getResources().getDrawable(getDrawableResurceID(source));
        //一定要加上邊界這部分代碼。要不然drawable會因為信息不完整讀不出來圖片
        //分別是left top width height 
        drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
        return drawable;
      }
    }, null);
    //第三步、將CharSequence字符串序列的文本text插入到TextView控件中即可
    tv_textAndImage.setText(text);
    
  }
  /**
   * 獲取圖片的資源ID
   * @param imageName 圖片的名稱
   * @return 圖片對應的ID
   * 
   */
  private int getDrawableResurceID(String imageName){
    //利用反射機制取得圖片的id
    /*
     * 其實是找com.example.textViewDemo1.R.drawable.image1的值,也就是
     * public static final int image1=0x7f020001;
     * 也就是0x7f020001
     * 例如image1,返回的就是0x7f020001
     */
    try {
      Field field=R.drawable.class.getField(imageName);
      return Integer.parseInt(field.get(null).toString()); 
    } catch (Exception e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }
    
    return 0;
    
  }
}

/textViewDemo1/res/layout/activity02.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >
  <TextView 
    android:id="@+id/tv_textAndImage"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    />

</LinearLayout>

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

志丹县| 平舆县| 渝北区| 高州市| 女性| 舒兰市| 颍上县| 武义县| 全南县| 新民市| 墨玉县| 民县| 华宁县| 手游| 弋阳县| 舞阳县| 昭平县| 德格县| 隆回县| 夹江县| 安陆市| 翁源县| 信丰县| 陵川县| 三都| 通海县| 修文县| 长沙县| 新建县| 绥芬河市| 体育| 斗六市| 夹江县| 喀喇沁旗| 读书| 彭山县| 枣强县| 鹤峰县| 太保市| 江源县| 开平市|