Android UI详解之EditText

                           Android UI详解之EditText

 

一、EditText 属性

 

        EditText继承关系:View-->TextView-->EditText。 
        

       1、
android:layout_gravity="center_vertical"    -----   设置控件显示的位置:默认top,这里居中显示还有bottom
       2、android:hint="请输入数字!"    -----   设置显示在空间上的提示信息 
       3、android:numeric="integer"   -----设置只能输入整数,如果是小数则是:decimal 
       4、android:singleLine="true"  -----设置单行输入,一旦设置为true,则文字不会自动换行。 
       5、android:password="true"     ------设置只能输入密码 

       6、android:textColor = "#ff8c00"   ----字体颜色 
       7、android:textStyle="bold"      ----字体,bold, italic, bolditalic 
       8、android:textSize="20dip"      -----设置字体大写 ,大 小 
     10、android:capitalize = "characters"     -----以大写字母写 
     11、android:textAlign="center"       -----EditText没有这个属性,但TextView有,居中 
     12、android:textColorHighlight="#cccccc"     -----被选中文字的底色,默认为蓝色 
     13、android:textColorHint="#ffff00"          --------设置提 示信息文字的颜色,默认为灰色 
     14、android:textScaleX="1.5"        -----控制字与字之间的间距 
     15、android:typeface="monospace"      ------字型,normal, sans, serif, monospace 
     16、android:background="@null"      -----空间背景,这里没有,指透明 
     17、android:layout_weight="1"      -----权重,控制控件之间的 地位,在控制控件显示的大小时蛮有用的。 
 

1.让EditText默认不弹出软件键盘
方法一:
在 AndroidMainfest.xml中选择哪个activity,设置windowSoftInputMode属性为 adjustUnspecified|stateHidden
例如:<activity android:name=".Main"
                  android:label="@string/app_name"
                  android:windowSoftInputMode="adjustUnspecified|stateHidden"
                  android:configChanges="orientation|keyboardHidden">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
方法二:
EditText失去焦点,使用EditText的clearFocus方法
例如:EditText edit=(EditText)findViewById(R.id.edit);
           edit.clearFocus();
方 法三:
强制隐藏Android输入法窗口
例如:EditText edit=(EditText)findViewById(R.id.edit);  
           InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); 
           imm.hideSoftInputFromWindow(edit.getWindowToken(),0);

 

                           Android UI详解之EditText

 

一、EditText 属性

 

        EditText继承关系:View-->TextView-->EditText。 
        

       1、
android:layout_gravity="center_vertical"    -----   设置控件显示的位置:默认top,这里居中显示还有bottom
       2、android:hint="请输入数字!"    -----   设置显示在空间上的提示信息 
       3、android:numeric="integer"   -----设置只能输入整数,如果是小数则是:decimal 
       4、android:singleLine="true"  -----设置单行输入,一旦设置为true,则文字不会自动换行。 
       5、android:password="true"     ------设置只能输入密码 

       6、android:textColor = "#ff8c00"   ----字体颜色 
       7、android:textStyle="bold"      ----字体,bold, italic, bolditalic 
       8、android:textSize="20dip"      -----设置字体大写 ,大 小 
     10、android:capitalize = "characters"     -----以大写字母写 
     11、android:textAlign="center"       -----EditText没有这个属性,但TextView有,居中 
     12、android:textColorHighlight="#cccccc"     -----被选中文字的底色,默认为蓝色 
     13、android:textColorHint="#ffff00"          --------设置提 示信息文字的颜色,默认为灰色 
     14、android:textScaleX="1.5"        -----控制字与字之间的间距 
     15、android:typeface="monospace"      ------字型,normal, sans, serif, monospace 
     16、android:background="@null"      -----空间背景,这里没有,指透明 
     17、android:layout_weight="1"      -----权重,控制控件之间的 地位,在控制控件显示的大小时蛮有用的。 
 

1.让EditText默认不弹出软件键盘
方法一:
在 AndroidMainfest.xml中选择哪个activity,设置windowSoftInputMode属性为 adjustUnspecified|stateHidden
例如:<activity android:name=".Main"
                  android:label="@string/app_name"
                  android:windowSoftInputMode="adjustUnspecified|stateHidden"
                  android:configChanges="orientation|keyboardHidden">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
方法二:
EditText失去焦点,使用EditText的clearFocus方法
例如:EditText edit=(EditText)findViewById(R.id.edit);
           edit.clearFocus();
方 法三:
强制隐藏Android输入法窗口
例如:EditText edit=(EditText)findViewById(R.id.edit);  
           InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); 
           imm.hideSoftInputFromWindow(edit.getWindowToken(),0);

 

猜你喜欢

转载自blog.csdn.net/ustory/article/details/42460531