摘要: 下面是EditText控件的一些常用属性,android编程一定要看的,自己记录下俩备查,也方便一下兄弟们android:layout_gravity="center_vertical"//设置控件显示的位置:默认top,这里居中显示,还有bottomandroid:hint="请输入数字!"//设置显示在控件上的提示信息,控件上无值时显示android:numeric="integer"//设置只能输入整数,如果是小数则是:decimalandroid:singleLine="true"//设置单行输入,一旦设置 阅读全文
posted @ 2012-10-04 21:31 承志软件.张 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 在EditText控件前面的任意一个控件,比如 TextView 控件,设置两个属性 Focusable = true ,FocusableInTouchMode=true 代表这个控件取得焦点,那么默认输入法就不会跳出来了,如下所示: 1 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 2 xmlns:tools="http://schemas.android.com/tools" 3 android:id="@+id/ScrollView1& 阅读全文
posted @ 2012-10-04 21:27 承志软件.张 阅读(387) 评论(1) 推荐(0) 编辑