1、手动创建(不建议):
TextView tv = new TextView(this); tv.setContent("你好"); setContentView(tv);
2、建议使用单位:
宽度、高度等:dp
字体大小等:sp
3、字体颜色:
3.1、适用于整个TextView:
android:textColor
3.2、适用于部分内容:
3.2.1、HTML格式:
TextView tv = (TextView)findViewById(R.id.tv); tv.setText(HTML.fromHtml("欢迎您,<font color=red>Katherine</font>"));
3.2.2、SpannableStringBuilder类:
TextView tv = (TextView)findViewById(R.id.tv); String str = "欢迎您,Katherine"; SpannableStringBuilder style = new SpannableStringBuilder(str); style.setSpan(new ForegroundColorSpan(Color.RED), 4, 13, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); tv.setText(style);
4、超链接:
android:autoLink
可取值:none | web | email | phone | map | all
5、跑马灯效果:
android:focusable="true"
android:ellipsize="marquee"//当文字过长时,该如何显示。可取值:start(前方显示省略号) | middle(中间显示省略号) | end(末尾显示省略号) | marquee(跑马灯形式显示)
android:marqueeRepeatLimit="marquee_forever"
android:focusableInTouchMode="true"
android:singleLine="true"