我想问dialog fragment
问“你确定吗?”带有“是/否”回复。
我看过the documentation并且它真的很冗长,遍布整个地方,解释了如何制作高级对话框,但没有完整的代码来制作一个简单的'hello world'类型的对话框。大多数教程都使用不推荐使用的对话框系统。 official blog似乎不必要地复杂且难以理解。
那么,创建和显示真正基本的警报对话框的最简单方法是什么?如果它使用支持库,则奖励积分。
答案 0 :(得分:78)
DialogFragment实际上只是一个包装对话框的片段。您可以通过在DialogFragment的onCreateDialog()方法中创建和返回对话框来在其中放置任何类型的对话框。
下面是一个示例DialogFragment:
class MyDialogFragment extends DialogFragment{
Context mContext;
public MyDialogFragment() {
mContext = getActivity();
}
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(mContext);
alertDialogBuilder.setTitle("Really?");
alertDialogBuilder.setMessage("Are you sure?");
//null should be your on click listener
alertDialogBuilder.setPositiveButton("OK", null);
alertDialogBuilder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
return alertDialogBuilder.create();
}
}
创建对话框调用:
new MyDialogFragment().show(getFragmentManager(), "MyDialog");
从某处解雇对话:
((MyDialogFragment)getFragmentManager().findFragmentByTag("MyDialog")).getDialog().dismiss();
所有这些代码都可以与支持库完美配合,只需更改导入即可使用支持库类。
答案 1 :(得分:12)
那么,创建和显示真正基本警报的最简单方法是什么 对话?如果它使用支持库,则奖励积分。
只需创建一个DialogFragment
(SDK或支持库)并覆盖其onCreateDialog
方法,即可返回AlertDialog
,并在其上设置所需的文字和按钮:
public static class SimpleDialog extends DialogFragment {
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
return new AlertDialog.Builder(getActivity())
.setMessage("Are you sure?")
.setPositiveButton("Ok", null)
.setNegativeButton("No way", null)
.create();
}
}
要在用户使用其中一个按钮时执行某些操作,您必须提供DialogInterface.OnClickListener
的实例,而不是我的代码中的null
引用。
答案 2 :(得分:5)
对于使用Kotlin和Anko进行编码的人,现在可以用4行代码进行对话:
alert("Order", "Do you want to order this item?") {
positiveButton("Yes") { processAnOrder() }
negativeButton("No") { }
}.show()
答案 3 :(得分:3)
因为活动/片段生命周期 @athor& @lugsprog方法可能会失败, 更优雅的方法是从方法onAttach获取活动上下文并将其存储为弱引用**(并尝试避免在DialogFragment中使用非默认构造函数!,将任何参数传递给对话框使用参数),如下所示:
public class NotReadyDialogFragment extends DialogFragment {
public static String DIALOG_ARGUMENTS = "not_ready_dialog_fragment_arguments";
private WeakReference<Context> _contextRef;
public NotReadyDialogFragment() {
}
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
/** example pulling of arguments */
Bundle bundle = getArguments();
if (bundle!=null) {
bundle.get(DIALOG_ARGUMENTS);
}
//
// Caution !!!
// check we can use contex - by call to isAttached
// or by checking stored weak reference value itself is not null
// or stored in context -> example allowCreateDialog()
// - then for example you could throw illegal state exception or return null
//
AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(_contextRef.get());
alertDialogBuilder.setMessage("...");
alertDialogBuilder.setNegativeButton("Przerwij", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
return alertDialogBuilder.create();
}
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
_contextRef = new WeakReference<Context>(activity);
}
boolean allowCreateDialog() {
return _contextRef !== null
&& _contextRef.get() != null;
}
修改强> &安培;如果你想解雇对话那么:
类似的东西:
NotReadyDialogFragment dialog = ((NotReadyDialogFragment) getActivity().getFragmentManager().findFragmentByTag("MyDialogTag"));
if (dialog != null) {
Dialog df = dialog.getDialog();
if (df != null && df.isShowing()) {
df.dismiss();
}
}
EDIT2:&amp;如果你想把对话设置为不可取消你应该改变onCreatweDialog返回语句,如下所示:
/** convert builder to dialog */
AlertDialog alert = alertDialogBuilder.create();
/** disable cancel outside touch */
alert.setCanceledOnTouchOutside(false);
/** disable cancel on press back button */
setCancelable(false);
return alert;