我想在我的应用程序中使用带有搜索栏的对话框。但我真的不知道该怎么做,因为我缺乏使用 android 的经验。
因此,当您按下一个按钮时:应该会出现一个带有搜索栏的对话框,用户可以输入一个值,然后按 OK 按钮。
我现在的代码是developer.android的默认代码:
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage("Are you sure you want to exit?")
.setCancelable(false)
.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
MyActivity.this.finish();
}
})
.setNegativeButton("No", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
});
AlertDialog alert = builder.create();
我该怎么做才能添加SeekBar
?
谢谢!