码迷,mamicode.com
首页 > 移动开发 > 详细

Android控件-EditView

时间:2015-01-20 00:50:36      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:

1 基本使用

1.1 基本使用

    <!-- 基本使用 -->
    <EditText
        android:id="@+id/et_myet1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="北京魔乐科技软件学院(MLDN)" />

 

1.2 password

    <!-- android:password,定义为密码输出框,输入不可见 -->
    <EditText
        android:id="@+id/et_myet2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:password="true"
        android:text="用户登录密码" />

 

1.3 numeric

<!-- android:numeric,设置为只能输入数字 -->
    <EditText
        android:id="@+id/myet3"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:numeric="integer" />

 

1.4 selectAllOnFocus

<!-- android:selectAllOnFocus,设置为编辑框中的内容被选中 -->
    <EditText
        android:id="@+id/myet3"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:selectAllOnFocus="true"
        android:text="北京魔乐科技软件学院(MLDN)" />

Android控件-EditView

标签:

原文地址:http://www.cnblogs.com/limaofuyuanzhang/p/4235099.html

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