how to remove android edit text focus when it is disabled?

最后都变了- 提交于 2019-12-11 16:37:36

问题


In small devices soft keyboard's "NEXT" button is used to enter the value for edit texts without touching the edit text.

This is very helpful when multiple entry is to be filled..

But i disabled two edit text in between so i can't go beyond that edit text. the next key hides...

i used

android:imeOptions="actionUnspecified"

for those two edit texts but no luck...

Any solution?


回答1:


Have you tried to set them to be non-focusable?

Programmatically (ie when you're deactivating the EditTexts):

yourEditText.setFocusable( false );
yourEditText.setFocusableInTouchMode( false );

XML

android:focusable="false"
android:focusableInTouchMode="false"

Hope this works out for you.



来源:https://stackoverflow.com/questions/8111335/how-to-remove-android-edit-text-focus-when-it-is-disabled

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!