Back button on Android Phones

前端 未结 2 1876
闹比i
闹比i 2021-02-19 06:09

A couple questions about the back button (as seen on the emulator)...

  1. Do all Android phones have the back button as a hard, tactile button?

  2. If s

2条回答
  •  不要未来只要你来
    2021-02-19 06:46

    For 3: Yes.

    @Override 
    public void onBackPressed() {
        super.onBackPressed();
        overridePendingTransition(R.anim.zoom_enter, R.anim.zoom_exit);
    }
    

提交回复
热议问题