2016-05-09 6 views
-1

下に置いたRecyclerViewがスクロールアップしたときにスクロールアップするViewpagerを表示したいとします。RecyclerViewと共にスクロールするビューページを表示

RecyclerViewに表示される情報は、Viewpagerに表示されるページによって異なります。 Viewpagerの上にはツールバーがあります。

これは私が使用しているレイアウトです:

<?xml version="1.0" encoding="utf-8"?> 
<android.support.design.widget.CoordinatorLayout android:id="@+id/coordinatorLayout" 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:context=".main.MainActivity"> 

    <android.support.design.widget.AppBarLayout 
     android:id="@+id/appbar" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:background="?attr/colorPrimary"> 

     <android.support.v7.widget.Toolbar 
      android:id="@+id/toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content"> 

      <TextView 
       android:id="@+id/toolbarTitle" 
       android:layout_width="wrap_content" 
       android:layout_height="?attr/actionBarSize" 
       android:gravity="center_vertical" 
       android:textColor="@color/text_white" 
       android:textSize="18sp" 
       android:textStyle="bold"/> 
     </android.support.v7.widget.Toolbar> 

    </android.support.design.widget.AppBarLayout> 

    <ScrollView 
     android:id="@+id/scrollView" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:fillViewport="false" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior"> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="vertical"> 

      <com.pixplicity.multiviewpager.MultiViewPager 
       android:id="@+id/pager" 
       android:layout_width="match_parent" 
       android:layout_height="220dp" 
       android:background="@color/black" 
       app:matchChildWidth="@+id/page"/> 

      <FrameLayout 
       android:id="@+id/frameLayout" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content"/> 
     </LinearLayout> 
    </ScrollView> 
</android.support.design.widget.CoordinatorLayout> 

注:MultiViewPagerは、前のページと次のページの一部を表示するViewPagerです。

ページを選択すると、framelayoutがRecyclerViewを含むフラグメントに置き換えられます。フラグメントのレイアウトは次のとおりです。

<?xml version="1.0" encoding="utf-8"?> 
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <android.support.v7.widget.RecyclerView 
     android:id="@+id/recyclerView" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"/> 

    <TextView 
     android:id="@+id/emptyView" 
     style="@style/no_data" 
     android:text="@string/movements_no_data" 
     android:visibility="gone"/> 
</FrameLayout> 

キットカットで動作しているようですAlthought、私はマシュマロでそれをしようとすると、動作が奇妙である:スクロールはRecyclerViewことを別の方法でViewpagerを移動します。

注2:Kitkatでスクロールが最初にTOPから移動されるため、アプリの起動時にスクロールの位置をリセットする必要があります。私はリセットに使用するコードは次のとおりです。このレイアウトを実装する方法について

scrollView.post(new Runnable() { 
     public void run() { 
      scrollView.fullScroll(View.FOCUS_UP); 
     } 
    }); 

その他のレイアウトの提案やアイデアをいただければ幸いです。

+0

リサイクラにヘッダとして必要なレイアウトを追加してください。 –

+0

提案通りに編集されています。 – Fer

答えて

0

私は、CollapseingToolbarLayout内にViewPagerを設定することでこの問題を解決しました。

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true"> 

<android.support.design.widget.AppBarLayout 
    android:id="@+id/app_bar_layout" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:fitsSystemWindows="true" 
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> 

    <android.support.design.widget.CollapsingToolbarLayout 
     android:id="@+id/collapsing_toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:fitsSystemWindows="true" 
     app:contentScrim="?attr/colorPrimary" 
     app:layout_scrollFlags="scroll|exitUntilCollapsed"> 

     <com.pixplicity.multiviewpager.MultiViewPager 
      android:id="@+id/pager" 
      android:layout_width="match_parent" 
      android:layout_height="210dp" 
      android:layout_marginTop="@dimen/pager_margin_top" 
      app:layout_collapseMode="parallax" 
      app:matchChildWidth="@+id/page"/> 

     <android.support.v7.widget.Toolbar 
      android:id="@+id/toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="?attr/actionBarSize" 
      app:layout_collapseMode="pin" 
      app:popupTheme="@style/ThemeOverlay.AppCompat.Light"> 

      <TextView 
       android:id="@+id/toolbarTitle" 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       android:gravity="center_vertical" 
       android:shadowColor="#000" 
       android:shadowDx="2" 
       android:shadowDy="2" 
       android:shadowRadius="2" 
       android:textColor="#fff" 
       android:textSize="18sp" 
       android:textStyle="bold"/> 
     </android.support.v7.widget.Toolbar> 

    </android.support.design.widget.CollapsingToolbarLayout> 

</android.support.design.widget.AppBarLayout> 

<FrameLayout 
    android:id="@+id/frameLayout" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior"/> 

</android.support.design.widget.CoordinatorLayout> 
0

ScrollViewの代わりにNestedScrollViewを試してみてください。 スクロールビューの中にRecyclerViewを使用している場合、その必要はありません。 Appバースクロールの動作をRecyclerViewに直接割り当てることができ、Appbarのスクロールと折りたたみを管理します。 NestedScrollViewを使用する場合は、パフォーマンスと外観を向上させるため、ビューポートを埋めるように設定する必要があることに注意してください。

関連する問題