I have a ListView with edit text in each items and I want to know how can I make the EditText editable.. It seems to work fine if I set the android:windowSoftInputMode="adjustPan" into the manifest but only on some devices. On some devices the soft keyboard covers the edittext.
On the other side, if I don’t put android:windowSoftInputMode="adjustPan" in the manifest, the EditText looses focus after the soft keyboard is displayed and I have to touch the EditText multiple times to make it selected and can write in it.
Please help me solve this.
Note: I’ve seen this post: Focusable EditText inside ListView and nothing helped from there and I have totally other problem than that
I made a workaround for this though.. maybe will help someone