码迷,mamicode.com
首页 > 移动开发 > 详细

Android之TextView控件的学习

时间:2016-07-29 18:33:15      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:

<TextView
android:id="@+id/tv"             //id号,指明这个TextView的唯一身份

android:autoLink="phone|web"    //电话或者网站的超链接,在字体里由电话号码的话,就会有有链接,有网址也会有超链接
android:layout_width="fill_parent"            
android:layout_height="wrap_content"
android:textSize="20sp"            //字体大小的设置
android:textColor="#00ff00"    //字体颜色的设置
android:text="@string/hello" />         //跳转到string.xml--》hello中,显示字体菜单及字体内容

    <string name="hello">Hello World, https://www.taobao.com!</string>

    <string name="app_name">HelloWorld</string>

 

在主函数中也可以这样显示字体,在oncreate()函数下添加以下语句

TextView tv=(TextView)findViewById(R.id.tv);
tv.setText(Html.fromHtml("欢迎大家收看<font color = red>《Android开发从零开始》</font>系列课程。感谢大家的支持"));

 

Android之TextView控件的学习

标签:

原文地址:http://www.cnblogs.com/yihujiu/p/5719028.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!