摘要:
上一篇文章介绍了EditText的属性,这里介绍EditText的使用方法。<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".Mai 阅读全文
摘要:
EditText(可编辑文本框),这里介绍EditText的属性EditText的继承关系:EditText→Textview→Viewandroid:hint="请输入数字!"//设置显示在空间上的提示信息android:numeric="integer"//设置只能输入整数,如果是小数则是:decimalandroid:singleLine="true"//设置单行输入,一旦设置为true,则文字不会自动换行。android:password="true"//设置只能输入密码android:textColor 阅读全文