Listview With Edittext Keyboard Issues
In my app, I have an Activity, which contains a Fragment, which contains a ListView with various EditTexts, like so: Activity -> Fragment -> ListView -> EditTexts When an
Solution 1:
The problem is that when you use EditText in a ListView row, your ListView might be redrawn to make space for the keyboard. And when your ListView is redrawn, the system does not remember where the cursor was before.
The same issue does not seem to happen if you use a LinearLayout inside a ScrollView instead of a ListView. It sounds stupid, but it works.
Post a Comment for "Listview With Edittext Keyboard Issues"