onBackPressed() method not triggered in AppCompatActivity

前端 未结 6 1042
囚心锁ツ
囚心锁ツ 2021-02-13 23:26

AppCompatActivity onBackPressed() method fails to trigger in my activity.

I see the back arrow button and get the animation when pressing it, but nothing else happens. a

6条回答
  •  不要未来只要你来
    2021-02-14 00:03

    onBackPressed() is not present in AppCompactActivity, You have to implement an InterFace KeyEvent.Callback and override onKeyUp method and check if the key is BackButton or you can extend ActionBarActivity which is child class of AppCompactActivity

提交回复
热议问题