EditTex属性

来源:互联网 发布:保鲜膜pe和pvdc 知乎 编辑:程序博客网 时间:2024/06/16 20:01
<LinearLayout 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"
   android:orientation="vertical"
    tools:context=".MainActivity" >
  
   <EditText
       android:layout_marginTop="200dp"
       android:hint="keyboard"
       android:textColorHint="@android:color/holo_purple"//会有很好看的提示颜色
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:singleLine="true"
       android:password="true"//输入限制为密码
       ></EditText>
   <EditText
       android:digits="123"//输入限制为数字
  
       android:layout_width="match_parent"
       android:layout_height="100dp"/>
   <EditText
        android:phoneNumber="true"//输入限制为电话号码
       android:layout_width="match_parent"
       android:layout_height="100dp"/>
<EditText
    android:textScaleX="1.05"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    ></EditText>
<EditText
    android:background="@null"//背景为空没有那个下划线我们可以制作好看的文本框
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    ></EditText>
<EditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceLargeInverse"//不出现键盘
    >
</EditText>
</LinearLayout>
0 0
原创粉丝点击