Android TextView實現(xiàn)圖文混合編排的方法
更新時間:2017年07月12日 11:02:33 作者:zhangphil
這篇文章主要為大家詳細介紹了Android TextView實現(xiàn)圖文混合編排的方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下
本文實例為大家分享了Android TextView圖文混合編排的具體代碼,供大家參考,具體內容如下
實現(xiàn)技術細節(jié)不難,兩個要點:
1、html代碼的混合編寫。
2、重寫ImageGetter。
例如:
布局:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context="zhangphil.app.MainActivity"> <TextView android:id="@+id/text1" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <TextView android:id="@+id/text2" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <TextView android:id="@+id/text3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:ellipsize="end" android:maxLines="1" /> <TextView android:id="@+id/text4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:ellipsize="end" android:maxLines="1" /> </LinearLayout>
Java代碼:
package zhangphil.app; import android.graphics.drawable.Drawable; import android.support.v4.content.ContextCompat; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.text.Html; import android.widget.TextView; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); TextView text1 = (TextView) findViewById(R.id.text1); TextView text2 = (TextView) findViewById(R.id.text2); TextView text3 = (TextView) findViewById(R.id.text3); TextView text4 = (TextView) findViewById(R.id.text4); String s = "zhang phil @ csdn Android TextView圖文混編"; CharSequence cs1 = Html.fromHtml(stringMixWithImage1(s), imgageGetter, null); text1.setText(cs1); CharSequence cs2 = Html.fromHtml(stringMixWithImage2(s), imgageGetter, null); text2.setText(cs2); CharSequence cs3 = Html.fromHtml(stringMixWithImage3(s), imgageGetter, null); text3.setText(cs3); CharSequence cs4 = Html.fromHtml(stringMixWithImage4(s), imgageGetter, null); text4.setText(cs4); } private String stringMixWithImage1(String string) { return string + "1 " + "<img src='" + R.mipmap.ic_launcher + "'/>" + " " + "<img src='" + R.mipmap.ic_launcher + "'/>" + " " + "<img src='" + R.mipmap.ic_launcher + "'/>" + " "; } private String stringMixWithImage2(String string) { return "2 " + "<img src='" + R.mipmap.ic_launcher + "'/>" + " " + "<img src='" + R.mipmap.ic_launcher + "'/>" + " " + "<img src='" + R.mipmap.ic_launcher + "'/>" + " " + string; } private String stringMixWithImage3(String string) { return string + "3 " + "<img src='" + R.mipmap.ic_launcher + "'/>" + " " + "<img src='" + R.mipmap.ic_launcher + "'/>" + " " + "<img src='" + R.mipmap.ic_launcher + "'/>" + " "; } private String stringMixWithImage4(String string) { return "4 " + "<img src='" + R.mipmap.ic_launcher + "'/>" + " " + "<img src='" + R.mipmap.ic_launcher + "'/>" + " " + "<img src='" + R.mipmap.ic_launcher + "'/>" + " " + string; } private Html.ImageGetter imgageGetter = new Html.ImageGetter() { @Override public Drawable getDrawable(String source) { int id = Integer.parseInt(source); Drawable d = ContextCompat.getDrawable(getApplicationContext(), id); d.setBounds(0, 0, d.getIntrinsicWidth(), d.getIntrinsicHeight()); return d; } }; }
代碼運行結果:
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:
- Android中TextView和ImageView實現(xiàn)傾斜效果
- Android TextView實現(xiàn)帶鏈接文字事件監(jiān)聽的三種常用方式示例
- Android用戶輸入自動提示控件AutoCompleteTextView使用方法
- Android TextView對齊的兩種方法
- Android實現(xiàn)帶動畫效果的可點擊展開TextView
- Android TextView中部分文字高亮顯示
- Android自定義textview實現(xiàn)豎直滾動跑馬燈效果
- Android中TextView顯示圓圈背景或設置圓角的方法
- Android 自定義TextView去除paddingTop和paddingBottom
相關文章
Android Studio下添加assets目錄的實現(xiàn)方法
下面小編就為大家?guī)硪黄狝ndroid Studio下添加assets目錄的實現(xiàn)方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-03-03android編程實現(xiàn)局部界面動態(tài)切換的方法
這篇文章主要介紹了android編程實現(xiàn)局部界面動態(tài)切換的方法,以實例形式較為詳細的分析了Android局部切換的布局及功能實現(xiàn)技巧,具有一定參考借鑒價值,需要的朋友可以參考下2015-11-11Android Studio應用開發(fā)集成百度語音合成使用方法實例講解
這篇文章主要介紹了Android Studio應用開發(fā)集成百度語音合成使用方法實例講解的相關資料,非常不錯,具有參考借鑒價值,需要的朋友可以參考下2016-11-11如何自己實現(xiàn)Android View Touch事件分發(fā)流程
這篇文章主要介紹了如何自己實現(xiàn)Android View Touch事件分發(fā)流程,幫助大家更好的理解和學習使用Android,感興趣的朋友可以了解下2021-03-03