您的位置:首页 > 其它

TextView的一些常用属性以及对应参数(部分5.0以上)

2015-11-15 00:10 603 查看
<!-- 设置文字颜色、大小,阴影 -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#f00"
android:text="测试"
android:shadowDx="10.0"
android:shadowDy="8.0"
android:shadowRadius="3.0"
android:shadowColor="#00f"
android:textSize="24sp"/>


<!-- 对邮件 电话增加连接 -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="邮件是:hy412145@163.com电话是:18229099596"
android:autoLink="email|phone"/>


autoLink的值:

all 所有

email

map

none

phone

<!-- 设置中间省略号,所有字母大写 -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="我爱我家别忘了备上它我喜欢82年的Java,you?"
android:ellipsize="middle"
android:textAllCaps="true"/>


ellipsize的值:

middle 中间

end 后面

start 前面

marque 滚动

none 没有

<!-- 文本类型 -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="我爱我家别忘了备上它我喜欢82年的Java,you?"
android.inputType="password"
android:textAllCaps="true"/>


inputType的值:

password

phone

email

number

web……
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: