I implemented a ListView using ArrayAdapter. Each listItem (row) contains EditText.
When I try to Edit the text of EditText I was not able to do that , because whenever the keyboard appears getView() method is called and I am not able to edit the text.
Can anyone help me in sorting out this issue.
Thanks in Advance
If this is the only problem you are facing while editing your EditText, you can eradicate it by adding the following attribute to your Activity in the manifest.
Something like this,
Now you will not be able to face the problem of clicking your Edittext twice to Edit it. But if you are facing some problems like, getitng wrong values in your EditText while scrolling, I am actually working on it and once I get the solution for it I will update my answer here.