服务器之家

服务器之家 > 正文

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

时间:2021-01-16 13:48     来源/作者:Android开发网

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

 

复制代码 代码如下:

/*TextView的设置*//* 获得TextView对象 */      
textview = (TextView)this.findViewById(R.id.textview);      
String string = "TextView示例!";    
/* 设置文本的颜色 */  
textview.setTextColor(Color.RED);       
/* 设置字体大小 */       
textview.setTextSize(20);       
/* 设置文字背景 */       
textview.setBackgroundColor(Color.BLUE);       
/* 设置TextView显示的文字 */       
textview.setText(string);

 

 

复制代码 代码如下:

/*TextView显示网页*/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='http://www.zzvips.com'>服务器之家</a></big>";
CharSequence charSequence = Html.fromHtml(html);
textView1.setText(charSequence);
textView1.setMovementMethod(LinkMovementMethod.getInstance());// 点击的时候产生超链接   
String text = "我的URL:http://www.zzvips.com\n";
text += "我的email:****** @gmail.com\n";
text += "我的电话:+ 86 137********";
textView2.setText(text);
textView2.setMovementMethod(LinkMovementMethod.getInstance());
标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部