DialogFragment onCreateView没有返回自定义布局视图?

时间:2017-05-23 09:27:42

标签: android android-fragments dialogfragment

我目前正在尝试使用我的DialogFragment自定义布局,但似乎我做错了什么。这是我班级目​​前的样子:

@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
    setRetainInstance(true);
    Log.d(TAG, "onCreateDialog");
    return new AlertDialog.Builder(getActivity())
            .setPositiveButton(android.R.string.ok, passDataListener)
            .setNegativeButton(android.R.string.cancel, null)
            .setCancelable(true)
            .create();
}

@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
    Log.d(TAG, "onCreateView");
    setTitleFromBundle();
    return inflater.inflate(R.layout.dialog_edittext, container);


}

@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
    super.onViewCreated(view, savedInstanceState);
    mEditText = (EditText) view.findViewById(R.id.dialog_edittext);
    tvUnits = (TextView) view.findViewById(R.id.dialog_units);

    setMaxCharsFromBundle();
    setTextFromBundle();
    setHintFromBundle();
    setInputTypeFromBundle();
    setUnitsTextViewFromBundle();
}

正/负按钮显示(连同标题)但是,我的布局没有。

3 个答案:

答案 0 :(得分:0)

您无法同时使用__builtin_avr_delay_cyclesonCreateDialog两种方法。您必须选择是否要显示"基本对话框"然后覆盖onCreateView。如果你想显示一个"自定义对话框"然后覆盖onCreateDialog。请注意,您还可以覆盖onCreateView并使用onCreateDialog设置自己的布局。

答案 1 :(得分:0)

您应该只在onCreateViewonCreateDialog之间实施一种方法,而不是两种方法。

  • onCreateView:提供对话框的内容
  • onCreateDialog:创建一个完全自定义的对话框,例如AlertDialog,具有自己的内容

文档here

中描述了所有内容

要获得完整指南,您可以看到https://guides.codepath.com/android/Using-DialogFragment

答案 2 :(得分:0)

不需要覆盖onCreateView()

@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
setRetainInstance(true);
Log.d(TAG, "onCreateDialog");
LayoutInflater inflater = (LayoutInflater) getActivity().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
return new AlertDialog.Builder(getActivity())
        .setView(inflater.inflate(R.layout.dialog_edittext, null))
        .setPositiveButton(android.R.string.ok, passDataListener)
        .setNegativeButton(android.R.string.cancel, null)
        .setCancelable(true)
        .create();
}