andorid EditView
Posted 让心开始
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了andorid EditView相关的知识,希望对你有一定的参考价值。
<?xml version="1.0" encoding="utf-8"?> <GridLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <EditText android:layout_columnSpan="2" android:hint="To:" android:layout_gravity="fill" android:inputType="textWebPassword" android:maxLength="6" /> <!--inputType phone只输入电话号码 inputType="numberPassword" 只输入数字 textWebPassword 字母和数字 date 日期 maxLength 最大长度 --> <EditText android:layout_columnSpan="2" android:hint="Subject:" android:layout_gravity="fill" android:editable="false"/> <!--editable 只读--> <EditText android:layout_columnSpan="2" android:hint="Message:" android:layout_gravity="fill" android:layout_rowWeight="1" android:gravity="top" /> <Button android:text="RESET" android:layout_gravity="fill" android:layout_columnWeight="1" android:id="@+id/reset" /> <Button android:text="SENO" android:layout_gravity="fill" android:layout_columnWeight="1" android:id="@+id/send" /> </GridLayout>
以上是关于andorid EditView的主要内容,如果未能解决你的问题,请参考以下文章
EditView不可编辑状态和可编辑状态动态切换 及 EditView的其它特效
android 使用Handler更新TextView时 手动编辑EditView时根本输入不了任何东西