On Sat, Jul 16, 2011 at 12:55 AM, Chris Johnson <[email protected]>wrote:
> Currently my code will save the text and > put it in a random View in the ListView. I do NOT want that... I want > the text I save to go to a specific view and stay there.. anyone have > any suggestions? > First, when posting code, please keep it short and to the point. Posting every bit of your code will just make people's eyes glaze over and they'll just ignore all of it. To your problem: when you get your text from the EditText, it should not be going directly to some TextView - it should be going to the data structure that your ListView items represent. Then you invalidate your adapter and your list gets updated. ------------------------------------------------------------------------------------------------- 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

