hi Sean Hodges,

it's working correctly. and is there a way to achieve this thing using
startActivity()???

Starting Activity B like this

startActivity(intent);

so when i press back button from Activity B i'm doing this

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

and i don't want to redirect to the Activity A. i just want to send it
to another activity. is this possible???

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