私は内部にViewPagerを備えた折り畳みツールバーを持っています。 ViewPagerには3つのフラグメントがあり、そのうちの1つにRecyclerViewがあります。 ColllapsingToolbarは他の2つのフラグメントで正常に動作しますが、RecyclerViewのフラグメントでは期待どおりに機能しません。viewPagerとRecyclerViewが動作していないAndroid CollapsingToolbar
私はrecyclerviewバージョンv7 23.2.1を使用しています。私のrecylcerViewにはカスタムアイテムがあります(各アイテムには親カードビューが含まれています)。
私はこの問題に関連する他の投稿を見ましたが、どれも大きな助けにはなりませんでした。
マイフラグメントレイアウト:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:fillViewport="true"
android:fitsSystemWindows="true"
android:layout_gravity="fill_vertical"
android:background="@color/color_ee"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<android.support.v7.widget.RecyclerView
android:id="@+id/topSubmissionsList"
android:layout_below="@+id/top_bar"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</android.support.v4.widget.NestedScrollView>
マイRecyclerView商品コード:あなたはRecylcerView
の内側に膨らまされているあなたはNestedScrollView
にレイアウトを配置する必要はありません
<android.support.v4.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:fillViewport="true"
android:fitsSystemWindows="true"
android:layout_gravity="fill_vertical"
android:background="@color/color_ee"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="15dip">
<!-- My Custom Content -->
</RelativeLayout>
</android.support.v7.widget.CardView>
</android.support.v4.widget.NestedScrollView>
可能な複製http://stackoverflow.com/questions/31000081/how-to-use-recyclerview-inside-nestedscrollview/32736113#32736113 –
ありがとう!私はそれを試してコメントします。 – Pareek
あなたに画面を表示し、正確な問題を説明することができます。 –