我正在开发一个应用程序..
我想创建一个在我们不关闭时稳定的弹出消息...
我想要一些帮助我做一个alertDialog框的教程。
提前致谢。
答案 0 :(得分:7)
我认为您正在搜索“对话框”,因此您可以向用户显示提醒消息,确认消息等。
有关详细信息,请参阅:http://developer.android.com/reference/android/app/Dialog.html,
这是警报对话框中的一个很好的示例:http://www.androidpeople.com/android-alertdialog-example/。
来自您的评论代码:
AlertDialog.Builder alt_bld = new AlertDialog.Builder(this).create();
alt_bld.setMessage("apprika target achieve...");
alt_bld.setCancelable(false);
alt_bld.setPositiveButton("yes", new OnClickListener() { public void onClick(DialogInterface dialog, int which) { // TODO Auto-generated method stub } });
alt_bld.setNegativeButton("No", new OnClickListener() { public void onClick(DialogInterface dialog, int which) { // TODO Auto-generated method stub dialog.cancel(); } });
alt_bld.show();
要在Click事件中显示“警报”对话框,请在点击侦听器中写入alert.show();
代码。
答案 1 :(得分:1)
AlertDialog.Builder(AlertDialogSamples.this)
.setIcon(R.drawable.alert_dialog_icon)
.setTitle(R.string.alert_dialog_two_buttons_title)
.setPositiveButton(R.string.alert_dialog_ok, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
/* User clicked OK so do some stuff */
}
})
.setNegativeButton(R.string.alert_dialog_cancel, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
/* User clicked Cancel so do some stuff */
}
})
.create();
答案 2 :(得分:1)
答案 3 :(得分:0)
尝试改用SnackBar,这是一个很棒的教程的链接 https://www.androidhive.info/2015/09/android-material-design-snackbar-example/