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

2016-02-19 09:49 14 1 收藏

下面请跟着图老师小编一起来了解下Android用户界面开发之:TextView的使用实例,精心挑选的内容希望大家喜欢,不要忘记点个赞哦!

【 tulaoshi.com - 编程语言 】

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

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)

代码如下:

/*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);

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)

代码如下:

/*TextView显示网页*/textView1 = (TextView) this.findViewById(R.id.textview1);
textView2 = (TextView) this.findViewById(R.id.textview2);
// 添加一段html的标志
String html = "font color='red'I love android/fontbr";
html += "font color='#0000ff'bigiI love android/i/big/fontp";
html += "biga href='http://www.jb51.net'脚本之家/a/big";
CharSequence charSequence = Html.fromHtml(html);
textView1.setText(charSequence);
textView1.setMovementMethod(LinkMovementMethod.getInstance());// 点击的时候产生超链接   
String text = "我的URL:http://www.jb51.netn";
text += "我的email:****** @gmail.comn";
text += "我的电话:+ 86 137********";
textView2.setText(text);
textView2.setMovementMethod(LinkMovementMethod.getInstance());

来源:http://www.tulaoshi.com/n/20160219/1592282.html

延伸阅读
现在网络的繁盛时代,光文字是不能满足人们的胃口的,图片,flash,音频,视频就成为浏览网页的主流显示,在手机上也一样。在手机上显示从网络端获取的数据显示,大家很自然的想起两种方式,一种就是webview,一种就是TextView。当然webView直接显示html页面就行了,我主要说的TextView显示html内容。 首先,说下TextView到底支持那些标签呢,...
使用wxdindows开发跨平台的界面 无双 发表于loveunix.net mushuang.forumer.com Linuxsir.com 转载请保留出处 使用wxwindows开发的一个例子 添加新的投票 订阅此主题 邮寄此主题 打印此主题 无双 发帖时间 2004-04-01 21:21:36 天才猪 组别: 治理...
代码如下: ?xml version="1.0" encoding="utf-8"?  LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"      android:layout_width="match_parent"      android:layout_height="match_parent"      android:orientation="vertical"   &n...
今天看到EOE问答里面有这“[Android 界面]NotificationManager 如何使用Bitmap做图标”这样一个问题,在论坛搜索也没有好的案例 特写一个简单的demo供大家参考 今天发布的是NotificationManager 使用Bitmap做图标 关键code 代码如下: public void notification(int flag) { Notification notification = new Notification(); //设...
一、效果图 二、代码 代码如下: public class TextSubView extends TextView { private TextPaint mPaint; public TextSubView(Context context, AttributeSet attrs) { super(context, attrs); mPaint = new TextPaint(getPaint()); mPaint.setStyle(TextPaint.Style.STROKE); mPaint.setShadowLayer(2.0F, 2.0F, 2.0F, Co...

经验教程

114

收藏

28
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部