开发者

How to disable Android Soft Keyboard for a particular activity?

I have an activity with one EditText where I need to input numbers only.

Now, I have defined the Input Type for my EditText to be number only and have drawn up a pretty keypad for my user to use, however I also need to make sure the soft keyboard doesn't pop up for my user when they click on the EditText.

I have tried hiding the keyboard through the manifest by adding

android:windowSoftInputMode="stateAlwaysHidden"

in my Manifest for the particular activity, but this doesn't work for me because as soon as the user clicks on the EditText the keyboard appears again.

I've tried doing the same programmatically like so

activity.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);

but that doesn't work either. Keyboard appears when the user clicks on the EditText.

The only thing that worked was setting InputType to null for the EditText like so:

EditText.setI开发者_Go百科nputType(InputType.TYPE_NULL);

but I cannot use this because it will allow users who have a keyboard attached to their device to input letters and other symbols in the EditText field, while I want everyone to specifically use only the keypad to enter data in the field.

I should also mention that I am currently testing my app under android 2.1, but I would like my solution to work across all versions. Any help would be appreciated. Thanks in advance.


Just thought it might be possible to extend EditText and handle the access to the softkeyboard through there and came across this question which has a very elegant solution to my problem.

Just followed the steps and this handled the softkeyboard perfectly for me. Hope it helps others that come across this issue.


In Whichever Edittext you need to disable the soft keyboard, add attribute in xml of that edit text.

<EditText android:id=".."
          ..
          android:focusable="false" />

It will stop the execution of soft keyboard.


Use the android:windowSoftInputMode="stateHidden" in your activity in manifest file. This will work. Don't use the android:focusable="false" for EditText unless if you are not willing to input the text. If you want to give input then remove that property for the edittext in the layout file.


You can try this. It is working for me:

getWindow().setFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
                     WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);


If you are using for example ViewGroup it allows you to block the soft keyboard using this method:

view.setDescendantFocusability(view.FOCUS_BLOCK_DESCENDANTS);

Thanks to this the view will get focus before any of its descendants.


you can use This Code:

<EditText
    .
    .
    android:enabled="false"
    android:focusable="false"
    android:focusableInTouchMode="false"
    android:inputType="numberPassword" />
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜