How to press the back button using an intent in android? -
i know pass intent goto home screen using code:
intent startmain = new intent(intent.action_main); startmain.addcategory(intent.category_home); startmain.setflags(intent.flag_activity_new_task); startactivity(startmain); but want press button using intent in android.
you need override pressed somewhere in activity @override public void onbackpressed() { //do whatever custom stuff wish here super.onbackpressed(); }
then may call backpressed in whatever way may wish , wherever may wish:
myactivity.this.onbackpressed();
Comments
Post a Comment