Wednesday 15 June 2011

android - How to edit listview item and save by click another listitem -


The list item needs to be edited by tapping the list item. So when I click on the list item, the text view should be turned into an edit box. But when I have to select another list item, then the first clickable list item should be updated there. And the related list items will open the list of item items in one place. So anyone can suggest me how to hide the second list item / third list item to hide the edited list item.

Create a custom adapter, create a custom view inside it.

Custom views will include: Textview & amp; Edittextview

Initially: textView (visibility: visible), EditTextView (visibility: hidden). Whenever you click on any element: Text View (Visibility: hidden), EditTextView (Visibility: is visible).

You can work on it: To implement by method,

No comments:

Post a Comment