Android - Confirm app exit with toast

后端 未结 6 669
滥情空心
滥情空心 2020-12-08 23:33

I\'m new to Android development and I want it so when the user presses the back button on the main activity, a toast message appears with a \"confirm exit by pressing the ba

6条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-09 00:22

    In newer version you can use the snackbar instead of toast.

    import android.support.design.widget.Snackbar;
    ...
    Snackbar.make(content, "Click BACK again to exit", Snackbar.LENGTH_SHORT).setAction("Action", null).show();
    ...
    

提交回复
热议问题