Reputation: 10886
I am having a lot of trouble getting an EditText within a ListView row to behave correctly. Does anyone know of any tutorials that walk you through the process?
Thanks!
Upvotes: 2
Views: 1941
Reputation: 21728
As of Android 4.1.0, these two components seem not working together as expected, something is buggy there. There are various proposed work arounds but all look like a low level hacks that may stop working or even cause they own problems in the future versions.
It is possible to use LinearLayout to simulate a list with comparable effort. EditText talks much better with LinearLayout.
Upvotes: 2
Reputation: 40168
This answers can help you out
Focusable EditText inside ListView
How to correctly handle Android EditText input inside a ListView?
Upvotes: 2