I have a LinearLayout with ListView and a button with vertical orientation.
I have list View with list item containing a “EditText”.
I have a button in a layout as mentioned above which is below the listview not part of listview.I edited the EditText in list row . When I clicked on save button outside the listView I need to retrieve the content of EditText.I am using CursorAdapter. Is there a way in which I can try to retrieve the text edited in EditText of Android ListView.
Can anyone help me in sorting out this issue.
Thanks in Advance.
Try this,
You have to create a reference to your listview’s particular child, and within a for loop you will be able to the reference to it. Do the save then.