片段

时间:2016-11-11 05:34:38

标签: android android-fragments

我正在片段中工作。它包含2个按钮和一个FrameLayout:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="fragments.Fragment_Book_A_Cam">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:weightSum="2">

        <Button
            android:id="@+id/bt_Public"
            android:layout_width="0dp"
            android:layout_height="60dp"
            android:layout_weight="1"
            android:background="@drawable/red"
            android:text="Public Jobs "
            android:textColor="#FFFFFF" />

        <Button
            android:id="@+id/bt_Active"
            android:layout_width="0dp"
            android:layout_height="60dp"
            android:layout_weight="1"
            android:background="@drawable/black"
            android:text="Active Jobs"
            android:textColor="#FFFFFF" />

    </LinearLayout>

    <FrameLayout
        android:id="@+id/Fragment_Jobs_BookACam"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    </FrameLayout>
</LinearLayout>

我想在Button点击时在FrameLayout中加载另一个Fragment,并且不想替换主FrameLayout。

我使用的所有方法都是崩溃或替换主片段。

bt_Public.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View view) {
      //                fragment = new Fragment_MyCloudVideo();
      //                FragmentManager fragmentManager = ;
      //                FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
      //    fragmentTransaction.replace(R.id.Fragment_MyVideos, fragment);

      //                fragmentTransaction.commit();

      FragmentManager fragmentManager = getFragmentManager();
      FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
      Fragment_Public_Jobs fragment = new Fragment_Public_Jobs();
      fragmentTransaction.addToBackStack("xyz");
      fragmentTransaction.hide(Fragment_Book_A_Cam.this);
      fragmentTransaction.add(android.R.id.content, fragment);
      fragmentTransaction.commit();

    }
  });

2 个答案:

答案 0 :(得分:1)

您似乎永远不会使用Fragment_Jobs_BookACam FrameLayout id

如果要在Fragments中显示Fragments,则需要使用该方法获取子FragmentManager

答案 1 :(得分:0)

首先纠正xml文件中出现的错误,然后尝试使用fragmentTransaction的replace()方法添加()。