Android用户界面开发之:TextView的使用实例

时间:2021-05-19

TextView就是一个用来显示文本标签的控件。

复制代码 代码如下:

textview = (TextView)this.findViewById(R.id.textview);
String string = "TextView示例!";

textview.setTextColor(Color.RED);

textview.setTextSize(20);

textview.setBackgroundColor(Color.BLUE);

textview.setText(string);

复制代码 代码如下:
textView1 = (TextView) this.findViewById(R.id.textview1);
textView2 = (TextView) this.findViewById(R.id.textview2);
// 添加一段html的标志
String html = "<font color='red'>I love android</font><br>";
html += "<font color='#0000ff'><big><i>I love android</i></big></font><p>";
html += "<big><a href='https://'></a></big>";
CharSequence charSequence = Html.fromHtml(html);
textView1.setText(charSequence);
textView1.setMovementMethod(LinkMovementMethod.getInstance());// 点击的时候产生超链接
String text = "我的URL:https://\n";
text += "我的email:****** @gmail.com\n";
text += "我的电话:+ 86 137********";
textView2.setText(text);
textView2.setMovementMethod(LinkMovementMethod.getInstance());

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章