码迷,mamicode.com
首页 > 其他好文 > 详细

关于UI的TextView的及其子类一些方法

时间:2015-09-08 10:49:14      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

完成联系我功能(about us)--加入邮箱,手机号。

<TextView

android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:text="邮件是191651196@qq.com,电话是13204508077"
android:autoLink="email|phone"/>



<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:stretchColumns="1">


//填写信息
<TableRow>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="用户名:"
android:textSize="16sp"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请填写登录账号"//隐藏文字,提示
android:selectAllOnFocus="true"/>//选择焦点输入
</TableRow>

 

//填写密码
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="numberPassword"/>

引申相关方法:

android:inputType="number"//输入数字,赋值后,输入法定性为数字

android:inputType="date"//输入日期,赋值后,输入法定性为日期

android:inputType="phone"//输入数据,赋值后,输入法定性为数字,输入格式字数控制


<!-- 设置文字颜色、大小,并使用阴影 -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="测试文字"
android:shadowColor="#00f"
android:shadowDx="10.0"
android:shadowDy="8.0"
android:shadowRadius="3.0"
android:textColor="#f00"
android:textSize="18pt"/>


<!-- 设置中间省略,所有字母大写 -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:text="我爱Java我aaaJava"
android:ellipsize="middle"//超范围中间省略
android:textAllCaps="true"/>//大小写


<!-- 设置字号为20pt,文本框结尾处绘制图片 -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="我爱Java"
android:textSize="20pt"
android:drawableEnd="@drawable/cs"/>//插入图片

关于UI的TextView的及其子类一些方法

标签:

原文地址:http://www.cnblogs.com/yhc04161120/p/4790883.html

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