片段没有出现

Fragment doesnt show up

我正在尝试制作一个包含两个 fragments.The 的 activity,第一个有 3 个嵌套片段,我将用作选项卡,第二个仅包含按钮。我不想将按钮片段添加到其他片段中,因为我不想重新加载它。现在我没有任何错误,但我的按钮片段没有出现。这是我的片段和我的activity。

我的主要activity:

 public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    getWindow().requestFeature(Window.FEATURE_ACTION_BAR);

    setContentView(R.layout.activity_main);

    Fragment statistics = new StatisticsFragment();
    FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
    transaction.add(R.id.fragment_statistics, statistics).commit();

    Fragment buttons = new MainPageButtonsFragment();
    FragmentTransaction buttonsTransaction = getSupportFragmentManager().beginTransaction();
    buttonsTransaction.add(R.id.main_page_buttons_fragment,buttons).commit();

他的布局

<RelativeLayout android:orientation="vertical" >
<FrameLayout
    android:id="@+id/fragment_statistics"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" />

<FrameLayout
    android:id="@+id/main_page_buttons_fragment"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/fragment_statistics"/>

我不会写我的按钮片段因为没有必要我只会说它的根标签是 FrameLayout.

我的统计片段(带标签的那个)

public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {

    Fragment currentDayFragment = new CurrentDayFragment();
    FragmentTransaction transaction1 = getChildFragmentManager().beginTransaction();
    transaction1.add(R.id.current_day_fragment, currentDayFragment).commit();

    Fragment configurationInfoFragment = new ConfigurationInfoFragment();
    FragmentTransaction transaction2 = getChildFragmentManager().beginTransaction();
    transaction2.add(R.id.configuration_info_fragment, configurationInfoFragment).commit();

    Fragment expensesInfoFragment = new ExpensesInfoFragment();
    FragmentTransaction transaction3 = getChildFragmentManager().beginTransaction();
    transaction3.add(R.id.expenses_info_fragment, expensesInfoFragment).commit();

    LayoutInflater lf = getActivity().getLayoutInflater();

    View statisticsView = lf.inflate(R.layout.fragment_statistics, container, false);

    return statisticsView;
}

他的布局:

<FrameLayout >

<android.support.v4.view.ViewPager
    android:id="@+id/pager"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <FrameLayout
        android:id="@id/current_day_fragment"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />
    <FrameLayout
        android:id="@id/configuration_info_fragment"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />
    <FrameLayout
        android:id="@id/expenses_info_fragment"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />

</android.support.v4.view.ViewPager>

嵌套片段只有根标签 FrameLayout 和几个 TextView。结果只是一个 activity,有 3 个选项卡,没有按钮片段。 我是 android 编程的新手,对此我完全迷失了。请帮忙!

相对布局没有android:orientation参数

我想第一个片段覆盖第二个

使用 LinearLayout 更改相对布局

<LinearLayout 
       android:orientation="vertical" 
       android:layout_width="match_parent"
       android:layout_height="match_parent">
    <FrameLayout
        android:id="@+id/fragment_statistics"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />

    <FrameLayout
        android:id="@+id/main_page_buttons_fragment"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/fragment_statistics"/>
</LinearLayout>

尝试使用这样的自定义高度....

 <RelativeLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
       >

        <FrameLayout
            android:id="@+id/fragment_statistics"
            android:layout_width="fill_parent"
            android:layout_height="250dp"
            android:layout_alignParentTop="true"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true" />

        <FrameLayout
            android:id="@+id/main_page_buttons_fragment"
            android:layout_width="fill_parent"
            android:layout_height="250dp"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:layout_alignParentBottom="true" />
    </RelativeLayout>