Skip to content Skip to sidebar Skip to footer

How To Remove Android Edit Text Focus When It Is Disabled?

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.

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.


Post a Comment for "How To Remove Android Edit Text Focus When It Is Disabled?"