Hi Sean,

i hope you also has gone out of answers. any way kindly let me know
this.

A --> B --> C -->

if i'm going to start Activity C from Activity B like this

startActivity(Activity C);

and when i press back button from activity C

        @Override
        public boolean onKeyDown(int keyCode, KeyEvent event) {
                // TODO Auto-generated method stub
                if (keyCode == KeyEvent.KEYCODE_BACK) {
                    finish();
                        return true;
                }
                return false;
        }

since i have call finish() method application will redirect back to
Activity B

so once i'm redirected to Activity B is there a way to capture that
i'v been back to Activity B

because onCreate method will not fire up like that how can i capture
it. then i'll be bale to finish() the activity

regards,
MIke

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to