首页 > 移动平台 > 详细

Android之TextView控件的学习

时间:2016-07-29 18:33:03      阅读:240      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!