onKeyDown() or onBackPressed()

前端 未结 4 1967
栀梦
栀梦 2020-12-06 05:10

I want to implement the back button functionality in my application. In application whenever I\'m clicking on back button in middle my control is going to login page direct

4条回答
  •  时光取名叫无心
    2020-12-06 05:39

    Yes you can override that back button

    public void onBackPressed() {
    
         Intent start = new Intent(currentclassname.this,which activity u want.class);
            startActivity(start);
            finishActivity(0);
            }
    

    By this you can move on any activity. This is very easy and simple way

提交回复
热议问题