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

EditTex属性

时间:2016-01-14 16:14:10      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

<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>

EditTex属性

标签:

原文地址:http://www.cnblogs.com/lcchuguo/p/5130296.html

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