Android学习3之EditText可编辑的文本框组件

 android:orientation="vertical"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent">
 
    android:id="@+id/mytext1"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:text="editview编辑框默认的文字信息"
  android:selectAllOnFocus="true"/>
 
    android:id="@+id/mytext2"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:password="true"
  android:text="用户登录的密码"/>
   
    android:id="@+id/mytext3"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:numeric="integer"
  android:text="123456789"/>   

 

 

效果图 :

Android学习3之EditText可编辑的文本框组件_第1张图片

你可能感兴趣的:(Android学习3之EditText可编辑的文本框组件)