如果再次按下按钮按钮,我想保持对话框打开但是当我按下它时,对话框关闭。请帮我如何保持公开对话
public class MainActivity extends Activity implements OnClickListener{
Button b1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
b1=(Button)findViewById(R.id.button1);
b1.setOnClickListener(this);
}
@Override
public void onClick(View arg0) {
final Builder ad = new AlertDialog.Builder(this);
ad.setCancelable(false);
ad.setNegativeButton("Ok", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int arg1) {
}
});
ad.setPositiveButton("Speak Again", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog,int arg1) {
}});
ad.show();
}
答案 0 :(得分:0)
试试这个。
AlertDialog AD = new AlertDialog.Builder(YourActivity.this)
.setTitle("Title")
.setMessage("Message")
.setNegativeButton("Ok", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
}
})
.setPositiveButton("Speak Again", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog_main, int which) {
// TODO Auto-generated method stub
}
}).show();
答案 1 :(得分:0)
好吧,你使用对话框。这意味着一旦按下按钮它就会关闭。 在获得“再次说话”按钮时,你可以重新打开对话框,或者你可以创建自己的Jform,这样如果按“再次说话”按钮,它就不会被关闭。
我建议你创建自己的表格