gpt4 book ai didi

android - 向对话框添加肯定按钮

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:59:02 27 4
gpt4 key购买 nike

我有一个非常简单的自定义对话框,我不想在不修改 XML 文件的情况下添加肯定按钮,就像您使用 AlertDialog 那样,但我不知道这是否可行。这是代码:

final Dialog dialog = new Dialog(MyActivity.this);
dialog.requestWindowFeature(Window.FEATURE_LEFT_ICON);
dialog.setContentView(R.layout.dialog);
dialog.setTitle("Settings");
dialog.show();

最佳答案

您应该使用生成器。

LayoutInflater inflater = LayoutInflater.from(this);
View dialog_layout = inflater.inflate(R.layout.dialog,(ViewGroup) findViewById(R.id.dialog_root_layout));
AlertDialog.Builder db = new AlertDialog.Builder(MyActivity.this);
db.setView(dialog_layout);
db.setTitle("settings");
db.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
});
AlertDialog dialog = db.show();

关于android - 向对话框添加肯定按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10710888/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com