leonardo
leonardo

Reputation: 93

Edit text isn't being focused on

I was testing my app that has an edit text on my phone and worked fine. However, once I connected to another device which is running android 5.1 I believe, the app is not letting me type anything on the edit text. Is there anyway to fix this?

Upvotes: 0

Views: 69

Answers (2)

Victory
Victory

Reputation: 5890

Check to see that you have a reasonable value in your Manifest for the activity android:windowSoftInputMode. For instance try stateVisible.

Upvotes: 1

derfect
derfect

Reputation: 642

try putting this in your onCreate

editText.requestFocus();

visit this question for more answers

Upvotes: 1

Related Questions