gpt4 book ai didi

android - 如何在android中关闭AlertDialog

转载 作者:IT王子 更新时间:2023-10-29 00:00:24 26 4
gpt4 key购买 nike

我创建了包含 4 个按钮的 AlertDialog

OptionDialog = new AlertDialog.Builder(this);
OptionDialog.setTitle("Options");
LayoutInflater li = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = li.inflate(R.layout.options, null, false);
background = (Button) v.findViewById(R.id.bkgSpinnerLabel);
SoundVib = (Button) v.findViewById(R.id.SoundVibSpinnerLabel);

OptionDialog.setView(v);
OptionDialog.setCancelable(true);
OptionDialog.setNeutralButton("Ok",
new DialogInterface.OnClickListener() {

public void onClick(DialogInterface arg0, int arg1) {
}
});
background.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
SetBackground();
// here I want to dismiss it after SetBackground() method
}
});


SoundVib.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Intent soundVibIntent = new Intent(SebhaActivity.this, EditPreferences.class);
startActivity(soundVibIntent);
}
});

OptionDialog.show();

我想在 SetBackground() 方法之后关闭它,我该怎么做?提前致谢。

最佳答案

AlertDialog.Builder 类中实际上没有任何 cancel()dismiss() 方法。

所以代替 AlertDialog.Builder optionDialog 使用 AlertDialog 实例。

喜欢,

AlertDialog optionDialog = new AlertDialog.Builder(this).create();

现在,只需调用 optionDialog.dismiss();

background.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
SetBackground();
// here I want to dismiss it after SetBackground() method
optionDialog.dismiss();
}
});

关于android - 如何在android中关闭AlertDialog,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14853325/

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