5(TextView的常用属性)

1、基础属性

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="这是文本这是文本"
android:textSize="20sp"
android:textColor="#ffffff"
android:textStyle="bold"
android:background="#aaaaaa"
/>

2、自动识别文本链接

(android:autoLink="all")
此属性会自动识别文本中的链接,包括all、email、map、phone、web、none

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="http://www.baidu.com"
android:background="#ccc"
android:gravity="center"
android:textColor="@color/colorAccent"
android:textSize="20sp"
android:autoLink="web"/>

 

3、让文本单行显示

android:singleLine="true"

后面会有省略号,其后内容无法显示

 
posted @   菜鸟是如何练成的  阅读(44)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 零经验选手,Compose 一天开发一款小游戏!
· 因为Apifox不支持离线,我果断选择了Apipost!
· 通过 API 将Deepseek响应流式内容输出到前端
点击右上角即可分享
微信分享提示