片段A包含ViewPager
,其中包含片段B.片段B包含RecyclerView
并单击其项目,打开片段C。
打开片段C(由片段B实施)
private void openItemPage(long id) {
Fragment a2Fragment = CompanyPageFragment.newInstance(id);
FragmentTransaction transaction = getChildFragmentManager().beginTransaction();
// store the Fragment in stack
transaction.addToBackStack(null);
transaction.replace(R.id.container, a2Fragment).commit();
}
片段A布局
<LinearLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingTop="15dp">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:background="@drawable/top_bottom_border"
app:tabBackground="@android:color/transparent"
app:tabIndicatorHeight="0dp"
app:tabMode="fixed">
</android.support.design.widget.TabLayout>
<ir.barandeh.android.views.NonSwipeableViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:overScrollMode="never"/>
</LinearLayout>
片段B布局
<RelativeLayout android:id="@+id/container"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v4.widget.ContentLoadingProgressBar
android:id="@+id/contentLoading"
style="?android:attr/android:progressBarStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"/>
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/refresh"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:overScrollMode="never"
android:paddingEnd="10dp"
android:paddingStart="10dp">
</android.support.v7.widget.RecyclerView>
</android.support.v4.widget.SwipeRefreshLayout>
</RelativeLayout>
片段C布局
<RelativeLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?android:attr/windowBackground">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<ir.barandeh.android.views.NonSwipeableViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:overScrollMode="never"/>
</android.support.v4.widget.NestedScrollView>
</RelativeLayout>
问题是,片段C内容显示在ViewPager
而不是整个片段A布局中。
答案 0 :(得分:-1)
您尝试以编程方式替换
LinearLayout
,同时也是 期待它拥有硬编码的孩子。这不行。您 应该使用FrameLayout
作为您的FragmentTransaction
您layout_root
的孩子。
引自https://stackoverflow.com/a/18885196/3749773。感谢Paul Burke
另一个错误是从片段B调用getChildFragmentManager()
,但我不得不从片段A调用它。感谢frozenkoi