web-dev-qa-db-ja.com

ダイアログにフラグメントを追加する

ダイアログにフラグメントを追加したいと思います(DialogFragmentまたは通常のDialogのいずれかです)。それ、どうやったら出来るの?

これが私のDialogFragmentです:

public class MyDialogFragment extends DialogFragment {
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        MyDialogFragment2 dialog = new MyDialogFragment2();
        View v = inflater.inflate(R.layout.news_articles, container, false);
        getActivity().getSupportFragmentManager().beginTransaction().add(R.id.fragment_container, dialog).commit();
        return v;
    }

}

これがnews_article.xmlです:

<FrameLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:id="@+id/fragment_container"
    Android:layout_width="match_parent"
    Android:layout_height="match_parent" />

これが私の主な活動です:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View arg0) {
            MyDialogFragment dialog = new MyDialogFragment();
            dialog.show(getSupportFragmentManager(), "asdf");
        }
    });
}

しかし、試してみると、次のようになります。

No view found for id 0x7f070002 for fragment MyDialogFragment2

アクティビティのFragmentManagerが追加すべきものではないためだと思いますが、DialogFragmentの1つが見つかりません。どこにありますか?

14
Kalisky

答えは(@Luksprogのおかげで)getActivity()。getSupportFragmentManagerの代わりにgetChildFragmentManagerを使用することです

ここで説明されているように、support-v4 jarをアップグレードする必要があったため、使用できませんでした: Android.support.v4.app.Fragment:undefined method getChildFragmentManager()

11
Kalisky

ダイアログのレイアウト-R.layout.view_with_plus

<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    xmlns:tools="http://schemas.Android.com/tools"
    Android:id="@+id/container"
    Android:layout_width="match_parent"
    Android:layout_height="match_parent"
    tools:context="com.util.me.TestActivity"
    >

    <TextView
        Android:id="@+id/text"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content"
        Android:text="Details"/>
    <fragment
        Android:layout_toRightOf="@+id/text"
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content"
        Android:layout_below="@+id/email"
        class="com.util.me.test.PlusOneFragment"
        Android:layout_centerHorizontal="true"/>

</RelativeLayout>

ダイアログの表示方法

public void showDialog(View vIew){
    AlertDialog.Builder builder = new AlertDialog.Builder(this);

    View view = this.getLayoutInflater().inflate(R.layout.view_with_plus, null);
    builder.setView(view)
            .setPositiveButton("OK", null)
            .setNegativeButton("Cancel", null);

    AlertDialog dialog = builder.create();
    dialog.show();
}

Class = "com.util.me.test.PlusOneFragment"のフラグメントは、Android Studioによって生成されたPlusOneFragmentです。

11
Tinashe