在我的代码中:

@Override
public void onBackPressed() {
}


它工作正常,但是例如,如果我调用对话框

final Dialog dialogPopupGewonnen = new Dialog(Start.this, android.R.style.Theme_Translucent_NoTitleBar_Fullscreen);
dialogPopup.setContentView(R.layout.popup);


我可以使用“后退”按钮(“后退”按钮关闭对话框弹出窗口)。但是我想在所有布局和对话框中禁用后退按钮。

最佳答案

您应该在所有活动中覆盖onBackPressed,对于Dialog,您可以使用setCancelable(false),例如:

final Dialog dialogPopupGewonnen = new Dialog(Start.this, android.R.style.Theme_Translucent_NoTitleBar_Fullscreen);
dialogPopup.setContentView(R.layout.popup);
dialogPopup.setCancelable(false);

10-05 19:40