在我的应用程序中,我显示了一个警报对话框,并且当屏幕方向改变时它会关闭。如何解决这个问题?我的代码如下。
private void showDialogue() {
AlertDialog.Builder alert = new AlertDialog.Builder(MyClass.this);
alert.setTitle("Title");
alert.setIcon(R.drawable.icon);
LayoutInflater inflater = (LayoutInflater)MyClass.this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.dialogue, null, false);
EditText from= (EditText)view.findViewById(R.id.from);
EditText to= (EditText)view.findViewById(R.id.to);
from.setHint("eg : From");
to.setHint("eg : To");
alert.setView(view);
searchAlert = alert.create();
searchAlert.show();
}