0

如何在RecyclerView上有ViewPager,或者在ScrollView中有多個RecyclerViews?我設計了以下佈局,但滾動時出現一些問題。 什麼問題,我該如何解決?如何在Android中設計複雜的用戶界面

<?xml version="1.0" encoding="utf-8"?> 
<ScrollView 
    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" 
    android:background="#dcdcdc" 
    android:fillViewport="true" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    tools:context=".ActivityMain" 
    tools:showIn="@layout/app_bar_main"> 

    <LinearLayout 
     android:id="@+id/header" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:orientation="vertical"> 


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

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

我試圖compile 'com.bartoszlipinski:recyclerviewheader2:2.0.1'

<com.bartoszlipinski.recyclerviewheader2.RecyclerViewHeader 
      android:id="@+id/header" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_gravity="center_horizontal|top"> 

1-首先它支持11 SDK或更大,
2-其次ViewPager在頭RecyclerView不會工作。 和我試過RecyclerViewlayout_width="wrap_content"但它只是在sdk21中支持。

我該如何解決RecyclerView的滾動問題?

+1

任何幫助將不勝感激。 – HPbyP

回答

0

嘗試丟失頂部的ScrollView並使用ListView代替RecyclerView。

ScrollView在這裏是不必要的,你需要使用ViewPager來處理RecyclerView,因爲它消耗所有的觸摸事件。如果你能用ListView逃脫,那會更簡單。

+1

謝謝,listview和RecyclerView之間沒有什麼不同,爲什麼我應該使用listView? 。和scrollview我想滾動viewPager和逐步隱藏它 – HPbyP

+0

因爲與ListView你不會有一個ViewPager的問題。我不知道你的意思是通過逐漸滾動和隱藏它,但是如果它像一個按下按鈕時滑出的動畫,那麼你使用的是調整大小的動畫,而不是ScrollView。 – vladimir123

0

你可以把你的視圖尋呼機應用程序欄在collapssing工具欄佈局,這將是好的