项目需求:

  TextView显示一段文字,格式为:白雪公主(姓名,字数不确定)向您发来了2(消息个数,不确定)条消息

  这段文字中名字和数字的长度是不确定的,还要求名字和数字各自有各自的颜色。

  一开始我想的是用SpannableString与SpannableStringBuilder来实现,因为它可以实现一段文字显示不同的颜色,但是貌似它只能固定哪些位置的文字显示什么样式,于是乎放弃。

  然后就想到了用

Java代码
  1. Html.fromHtml(String str)  

  来实现。

  看方法名很简单,就是可以显示字符串str对应的html格式的文本

  比如:

Java代码
  1. Html.fromHtml(<font color='red' size='24'>你好</font>" )  

  就将你好以html格式显示了,红色字体 大小24

  那么通过一个小Demo看下这个方法的简单使用:

  我有三个字符串,字符串中姓名、数字长度都是不同的,实现让姓名显示红色,数字显示蓝色,其他文字显示默认灰色的效果

  先写布局文件,三个TextView

XML/HTML代码
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"  
  3.     android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"  
  4.     android:paddingRight="@dimen/activity_horizontal_margin"  
  5.     android:paddingTop="@dimen/activity_vertical_margin"  
  6.     android:paddingBottom="@dimen/activity_vertical_margin"  
  7.     android:gravity="center"  
  8.     android:orientation="vertical"  
  9.     tools:context=".MainActivity">  
  10.   
  11.     <TextView  
  12.         android:id="@+id/html_text"  
  13.         android:gravity="center"  
  14.         android:layout_width="wrap_content"  
  15.         android:layout_height="wrap_content" />  
  16.   
  17.     <TextView  
  18.         android:id="@+id/html_text2"  
  19.         android:gravity="center"  
  20.         android:layout_width="wrap_content"  
  21.         android:layout_height="wrap_content" />  
  22.   
  23.     <TextView  
  24.         android:id="@+id/html_text3"  
  25.         android:gravity="center"  
  26.         android:layout_width="wrap_content"  
  27.         android:layout_height="wrap_content" />  
  28.   
  29. </LinearLayout>  

  然后Activity 的onCreate()方法

Java代码
  1. @Override  
  2. protected void onCreate(Bundle savedInstanceState) {  
  3.     super.onCreate(savedInstanceState);  
  4.     setContentView(R.layout.activity_main);  
  5.   
  6.     textView = (TextView) findViewById(R.id.html_text);  
  7.     textView2 = (TextView) findViewById(R.id.html_text2);  
  8.     textView3 = (TextView) findViewById(R.id.html_text3);  
  9.     names = new ArrayList<>();  
  10.     counts = new ArrayList<>();  
  11.     message = new ArrayList<>();  
  12.   
  13.     names.add("奥特曼");  
  14.     names.add("白雪公主与七个小矮人");  
  15.     names.add("沃德天·沃纳陌帅·帅德·布耀布耀德 ");  
  16.   
  17.     counts.add(1);  
  18.     counts.add(123);  
  19.     counts.add(9090909);  
  20.   
  21.     for (int i = 0; i < 3; i++) {  
  22.         message.add("<font color='red' size='20'>"+names.get(i)+"</font>"+"向您发来"+  
  23.                     "<font color='blue' size='30'>"+counts.get(i)+"</font>"+"条信息");  
  24.     }  
  25.   
  26.     textView.setText(Html.fromHtml(message.get(0)));  
  27.     textView2.setText(Html.fromHtml(message.get(1)));  
  28.     textView3.setText(Html.fromHtml(message.get(2)));  
  29.   
  30. }  

  看下效果图,是不是很简单,只要简单的会html 就可实现这种效果 

Android TextView如何显示html样式的文字

本文发布:Android开发网
本文地址:http://www.jizhuomi.com/android/example/521.html
2016年1月4日
发布:鸡啄米 分类:Android开发实例 浏览: 评论:0