On Wed, Jan 12, 2011 at 11:35 PM, Paul <[email protected]> wrote: > I have an app based on Notepad example app, and one thing that 'bugs' me is > that on insertion of a new note, the user can see the new <untitled> item at > the top of the ListView for a split second before being taken to the > EditText-based activity; I'd love for the > item to not be shown at all before the UI changes to the EditText screen. >
I didn't much of what you posted in the second paragraph, but this sound like the new note is added to the list first, then a new activity is started to edit it. If you don't want this, change it so the new note is not added first. Have it be added after onActivityResult is called. ------------------------------------------------------------------------------------------------- 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

