Android TextView个别文字字体颜格式
Java代码
1import android.app.Activity;
2import android.os.Bundle;
Html;
4import android.widget.TextView;
5
6public class AndroidFronColorTest extends Activity{
7@Override
8public void onCreate(Bundle savedInstanceState){
10
11setContentView(R.layout.main);
textstyle
12
13TextView htmlFormateTextView=
(TextView)findViewById(stTextView);
14
15String source="这只是一个测试,测试<u>下划线</u>、<i>斜体字</i>、<font color='red'>红字</font>的格式";
16
17htmlFormateTextView.setText(Html.fromHtml(source));
18}
19}
方法2
Java代码
20import android.app.Activity;
aphics.Color;
22import android.os.Bundle;
Html;
Spannable;
style.BackgroundColorSpan;
style.StyleSpan;
27import android.widget.EditText;
28import android.widget.TextView;
29
30public class AndroidFronColorTest extends Activity{ 31@Override
32public void onCreate(Bundle savedInstanceState){ Create(savedInstanceState);
34
35setContentView(R.layout.main);
36
37TextView htmlFormateTextView=
(TextView)findViewById(stTextView);
38
39String source="这只是一个测试,测试<u>下划线</u>、<i>斜体字</i>、<font color='red'>红字</font>的格式";
40
41htmlFormateTextView.setText(Html.fromHtml(source));
42
43EditText et=(EditText)findViewById(View);
44
45Spannable sp=(Text();
46
47sp.setSpan(new BackgroundColorSpan(Color.RED),0,5,
48
49Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
50
51sp.setSpan(new aphics.Typeface.BOLD_ITALIC), 6,11,
52
53Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
54}
55}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。