On Wed, Sep 28, 2011 at 10:40 AM, John Goche <[email protected]>wrote:
> The problem is that it refreshes the whole list view and the row the user > is editing loses the focus. Instead > I need to only refresh individual rows in the list. Is there a way to do > this? Oh. Your life got complicated. You could make the map be Map<MyType, List<EditText>>, so as one EditText is updated, it sends an event, finds its corresponding MyType, uses that to index the map, finds the dependent EditText's, and updates those. You would refresh the map in getView() as necessary since the ListRecycles views. ------------------------------------------------------------------------------------------------- TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago transit tracking app for Android-powered devices -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

