片段没有显示

时间:2015-10-09 12:02:48

标签: android android-layout android-fragments android-nested-fragment android-adapterview

我正在尝试创建一个包含两个片段的活动。第一个包含3个嵌套片段,我将用作制表符,第二个片段仅包含按钮。我不想将按钮片段添加到其他片段中,因为我不希望它重新加载。现在我没有任何错误,但我的按钮片段没有出现。这是我的片段和我的活动。

我的主要活动:

 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 s。结果只是一个包含3个选项卡且没有按钮片段的活动。 我是android编程新手,我完全迷失了。请帮忙!

2 个答案:

答案 0 :(得分:0)

相对布局没有android:orientation param

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

使用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>

答案 1 :(得分:0)

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

 <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>