On Aug 21, 4:13 pm, Gil <[EMAIL PROTECTED]> wrote:
> finish();
> Intent intent = new Intent( this, ActivityB.class);
> intent.setAction( Intent.ACTION_VIEW);
> intent.setData( m_signedInUser.getContentUri());
> startActivity( intent);

You should call finish -after- starting the next activity.  Otherwise
you are starting the next activity from no activity (upon calling
finish(), the system as starting closing down your activity and
transitioning back to the previous activity).

--~--~---------~--~----~------------~-------~--~----~
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]
Announcing the new Android 0.9 SDK beta!
http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to