我正在尝试使用10个按钮创建AlertDialog 但在AlertDialog中只有3个按钮。
答案 0 :(得分:0)
解决方案是创建一个包含10个按钮的视图,并通过
将其添加到对话框中new AlertDialog.Builder().setView( your10ButtonView )...
答案 1 :(得分:0)
尝试使用CustomDialog创建自己的布局,并在自定义AlertDialog中使用该布局。 像这样,
private Dialog mForgetPasswordDialog;
mForgetPasswordDialog = new Dialog(Signin.this);
mForgetPasswordDialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
mForgetPasswordDialog.setContentView(R.layout.forget_password);
mForgetPasswordDialog.setCancelable(true);
TextView btnOk = (Button) mForgetPasswordDialog
.findViewById(R.id.btnOk);
// do your stug
mForgetPasswordDialog.show();