我创建了一个带有自定义AlertDialog的DialogFragment,我需要在我的应用程序的几个点上显示。该对话框要求用户输入一些数据。
我想找到一种方法来调用对话框的活动,等待用户输入,然后在用户按下ok按钮时执行变量操作(如果按下取消,则不执行任何操作)。
AFAIK那里没有"模态对话框"在Android中,那么实现这种(通常的)行为的正确方法是什么?
答案 0 :(得分:6)
要允许Fragment与其Activity进行通信,您可以在Fragment类中定义接口并在Activity中实现它。
public class MyDialogFragment extends DialogFragment {
OnDialogDismissListener mCallback;
// Container Activity must implement this interface
public interface OnDialogDismissListener {
public void onDialogDismissListener(int position);
}
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
// This makes sure that the container activity has implemented
// the callback interface. If not, it throws an exception
try {
mCallback = (OnDialogDismissListener) activity;
} catch (ClassCastException e) {
throw new ClassCastException(activity.toString()
+ " must implement OnDialogDismissListener");
}
}
...
}
在对话框Ok listener中添加
mCallback.onDialogDismissListener(position);
在您的活动中
public static class MainActivity extends Activity
implements MyDialogFragment.OnDialogDismissListener{
...
public void onDialogDismissListener(int position) {
// Do something here to display that article
}
}