我的应用程序创建了一个 AlertDialog,用户在其中输入要保存的名称。当用户单击保存按钮时,onClickListener 将检查重复名称。如果名称已经存在,则会弹出另一个对话框,提醒用户现有数据将被替换。然后,用户可以选择取消并返回以更改为新名称,或者继续进行数据替换。
当第二个对话框出现时,我希望第一个对话框仍然可见,直到我调用dismiss。但是,第一个 AlertDialog 在第二个 AlertDialog 出现之前消失了。当单击按钮时,将自动调用关闭。这是一个错误还是设计使然?
我编写了下面的测试用例,我在 3 台设备上进行了检查:Nexus S android 4.0、HTC Rezound android 2.3 和 Motorola Droid Bionic android 2.3。
布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/message"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Some message will be here"
/>
<Button
android:id="@+id/show_btn"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Show"
/>
</LinearLayout>
代码
public class AlertDialogBug extends Activity
{
static final int DIALOG_ALERT_ID = 1;
AlertDialog alertDlg;
TextView message;
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
message = (TextView) findViewById(R.id.message);
Button showButton = (Button) findViewById(R.id.show_btn);
showButton.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v)
{
showDialog(DIALOG_ALERT_ID);
}
});
}
private AlertDialog createAlertDialog()
{
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Bug?");
builder.setPositiveButton("OK", new DialogInterface.OnClickListener()
{
@Override
public void onClick(DialogInterface dialog, int which)
{
// No dismiss, cancel, finish, or removeDialog,
// but the dialog will disappear when this button is clicked.
}
});
alertDlg = builder.create();
alertDlg.setOnDismissListener(new OnDismissListener()
{
@Override
public void onDismiss(DialogInterface dialog)
{
message.setText("onDismiss was called");
}
});
return alertDlg;
}
@Override
protected Dialog onCreateDialog(int id)
{
switch (id)
{
case DIALOG_ALERT_ID:
return createAlertDialog();
default:
return super.onCreateDialog(id);
}
}
}
我最初使用 android:theme="@android:style/Theme.Dialog" 将保存对话框编写为一个活动。UI 在 Nexus S 和 Rezound 上看起来不错,但在 Droid Bionic 上看起来很糟糕(编辑框和按钮只占宽度的一半,另一半是空白的)。