Android之TextView控件的学习

假如想象 提交于 2020-03-30 06:23:04

<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>系列课程。感谢大家的支持"));

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!