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

Popular posts from this blog

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -

python 3.x - Mapping specific letters onto a list of words -