我目前正在尝试使用我的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();
}
正/负按钮显示(连同标题)但是,我的布局没有。
答案 0 :(得分:0)
您无法同时使用__builtin_avr_delay_cycles
和onCreateDialog
两种方法。您必须选择是否要显示"基本对话框"然后覆盖onCreateView
。如果你想显示一个"自定义对话框"然后覆盖onCreateDialog
。请注意,您还可以覆盖onCreateView
并使用onCreateDialog
设置自己的布局。
答案 1 :(得分:0)
您应该只在onCreateView
和onCreateDialog
之间实施一种方法,而不是两种方法。
文档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();
}