私は自分のレイアウトを使用してDialogFragmentを作成しようとしています。
いくつかの異なるアプローチを見てきました。時々、レイアウトは次のようにOnCreateDialogで設定されます:(私はMonoを使用していますが、Javaに多少慣れています)
public override Android.App.Dialog OnCreateDialog (Bundle savedInstanceState)
{
base.OnCreateDialog(savedInstanceState);
AlertDialog.Builder b = new AlertDialog.Builder(Activity);
//blah blah blah
LayoutInflater i = Activity.LayoutInflater;
b.SetView(i.Inflate(Resource.Layout.frag_SelectCase, null));
return b.Create();
}
この最初のアプローチは私にとってはうまくいきます... findViewByID.
そのため、少しグーグルで調べた後、OnCreateView
をオーバーライドする2番目のアプローチを試しました。
そこで、レイアウトを設定するOnCreateDialog
の2行をコメントアウトして、これを追加しました。
public override Android.Views.View OnCreateView (LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
View v = inflater.Inflate(Resource.Layout.frag_SelectCase, container, false);
//should be able to use FindViewByID here...
return v;
}
それは私に素敵なエラーを与えます:
11-05 22:00:05.381: E/AndroidRuntime(342): FATAL EXCEPTION: main
11-05 22:00:05.381: E/AndroidRuntime(342): Android.util.AndroidRuntimeException: requestFeature() must be called before adding content
私は困惑しています。
この最初のアプローチは、FindViewByIDを使用するまで...私に役立ちます。
findViewById()
によって返されるビューにinflate()
をスコープしていないと思いますが、これを試してください:
View view = i.inflate(Resource.Layout.frag_SelectCase, null);
// Now use view.findViewById() to do what you want
b.setView(view);
return b.create();
次のコードでも同じ例外が発生しました。
public class SelectWeekDayFragment 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();
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.week_day_dialog, container, false);
return view;
}
}
DialogFragmentのonCreateViewまたはonCreateDialogの1つのみをオーバーライドすることを選択する必要があります。両方をオーバーライドすると、例外が発生します:「コンテンツを追加する前にrequestFeature()を呼び出す必要があります」。
完全な回答については、@ TravisChristianコメントを確認してください。彼が言ったように、あなたは両方を実際にオーバーライドすることができますが、すでにダイアログビューを作成した後にビューを膨張させようとすると問題が生じます。
以下のコードはgoogleガイドからのものであるため、答えはonCreateDialog()のようにできないため、super.onCreateDialog()を使用してダイアログを取得する必要があります。
public class CustomDialogFragment extends DialogFragment {
/** The system calls this to get the DialogFragment's layout, regardless
of whether it's being displayed as a dialog or an embedded fragment. */
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout to use as dialog or embedded fragment
return inflater.inflate(R.layout.purchase_items, container, false);
}
/** The system calls this only when creating the layout in a dialog. */
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
// The only reason you might override this method when using onCreateView() is
// to modify any dialog characteristics. For example, the dialog includes a
// title by default, but your custom layout might not need it. So here you can
// remove the dialog title, but you must call the superclass to get the Dialog.
Dialog dialog = super.onCreateDialog(savedInstanceState);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
return dialog;
}
}
以下は、Dialog FragmentでfindViewByIdを使用する例です。
public class NotesDialog extends DialogFragment {
private ListView mNotes;
private RelativeLayout addNote;
public NotesDialog() {
// Empty constructor required for DialogFragment
}
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
View view = getActivity().getLayoutInflater().inflate(R.layout.note_dialog, null);
mNotes = (ListView) view.findViewById(R.id.listViewNotes);
addNote = (RelativeLayout) view.findViewById(R.id.notesAdd);
addNote.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View v){
getDialog().dismiss();
showNoteDialog();
}
});
builder.setView(view);
builder.setTitle(bandString);
builder.setNegativeButton("Cancel",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
getDialog().dismiss();
}
}
);
return builder.create();
}
@Xavier Egeaが言うように、onCreateView()とonCreateDialog()の両方を実装している場合、「コンテンツを追加する前にrequestFeature()を呼び出さなければならない」というクラッシュを起こすリスクがあります。これは、そのフラグメントをダイアログとしてshow()するときに、onCreateDialog()とonCreateView()の両方が呼び出されるためです(理由はわかりません)。 Travis Christianが述べたように、onCreateDialog()でダイアログが作成された後のonCreateView()のinflate()がクラッシュの原因です。
これらの両方の機能を実装する方法の1つですが、このクラッシュを回避するには、getShowsDialog()を使用してonCreateView()の実行を制限します(したがって、inflate()は呼び出されません)。この方法では、DialogFragmentをダイアログとして表示しているときにonCreateDialog()コードのみが実行されますが、DialogFragmentがレイアウトのフラグメントとして使用されているときにonCreateView()コードを呼び出すことができます。
// Note: if already have onCreateDialog() and you only ever use this fragment as a
// dialog, onCreateView() isn't necessary
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
if (getShowsDialog() == true) { // **The key check**
return super.onCreateView(inflater, container, savedInstanceState);
} else {
View view = getActivity().getLayoutInflater().inflate(R.layout.fragment_alarm_dialog, null);
return configureDialogView(view);
}
}
@Override
public Dialog onCreateDialog(Bundle savedInstanceState)
{
// Return custom dialog...
Dialog dialog = super.onCreateDialog(savedInstanceState); // "new Dialog()" will cause crash
View view = getActivity().getLayoutInflater().inflate(R.layout.fragment_alarm_dialog, null);
configureDialogView(view);
dialog.setContentView(view);
return dialog;
}
// Code that can be reused in both onCreateDialog() and onCreateView()
private View configureDialogView(View v) {
TextView myText = (TextView)v.findViewById(R.id.myTextView);
myText.setText("Some Text");
// etc....
return v;
}
タイトルや閉じるボタンなどのダイアログプロパティに簡単にアクセスしたいが、独自のレイアウトも使用したい場合は、onCreateDialogをオーバーライドするときにBuilderでLayoutInflatorを使用できます。
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
LayoutInflater inflater = getActivity().getLayoutInflater();
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
builder.setMessage("Message!")
.setTitle(this.dialogTitle)
.setView(inflater.inflate(R.layout.numpad_dialog, null))
.setPositiveButton(R.string.enter, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// Clicked 'Okay'
}
})
.setNegativeButton(R.string.dismiss, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// Clicked 'Cancel'
}
});
return builder.create();
}