Back button on Android Phones

前端 未结 2 1871
闹比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条回答
  • For 3: Yes.

    @Override 
    public void onBackPressed() {
        super.onBackPressed();
        overridePendingTransition(R.anim.zoom_enter, R.anim.zoom_exit);
    }
    
    0 讨论(0)
  • 2021-02-19 06:55
    1. All Android phones have a dedicated BACK button. It is not always a "hard, tactile" button.

    2. It is never recommended to put a BACK button in your software.

    3. Reportedly, yes, but I do not have the answer handy, sorry.

    0 讨论(0)
提交回复
热议问题