0

我要添加垂直以及垂直滾動視圖內水平RecyclerViews內水平,垂直RecyclerView。我如何添加一個垂直滾動

是否有可能在vertcal scrollview中有多個回收站視圖 我需要使用哪些控件。

此外,RecyclerView嵌套在一個ScrollView中不是很好的做法,所以任何人都可以告訴我什麼是正確的方法做到這一點,我可以在另一個RecyclerView中添加RecyclerView,或者我只需要使用水平和垂直滾動視圖來實現這一點。

+0

你的問題不是很清楚,你能解釋一下你到底想要達到什麼目的嗎? – thepoosh

+0

在另一個滾動視圖中使用可滾動視圖不是一個好主意。如果你願意,你應該設置回收站視圖的默認高度。 – ajantha

+0

我想實現的東西像谷歌玩網頁 – alphanso

回答

0

您可以獲得兩個RecyclerView嵌套在一個滾動型這是不推薦的方式做這樣的事情。

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:custom="http://schemas.android.com/apk/res-auto" 
    android:layout_width="match_parent" 
    xmlns:app="http://schemas.android.com/tools" 
    android:focusableInTouchMode="true" 
    android:padding="8dp" 
    android:background="@drawable/old_map" 
android:layout_height="match_parent"> 

<ScrollView 
    android:layout_below="@+id/toolbar" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" 
    android:scrollbars="none"> 

<RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="600dp"> 

      <view 
      android:scrollbarSize="6dp" 
      android:id="@+id/recent_post" 
      class="android.support.v7.widget.RecyclerView" 
      android:layout_width="match_parent" 
      android:layout_height="400dp" 
      android:scrollbars="vertical" /> 

      <view 
      android:scrollbarSize="6dp" 
      android:id="@+id/recent_post" 
      class="android.support.v7.widget.RecyclerView" 
      android:layout_width="match_parent" 
      android:layout_height="400dp" 
      android:scrollbars="horizontal" /> 

</RelativeLayout> 
    </ScrollView> 
</RelativeLayout> 
0

我不知道就是你想要什麼樣的滾動,但它是可以同時使用這兩種卷軸:

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

     <HorizontalScrollView 
      android:id="@+id/HorizontalScrollView02" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" > 

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

       <!-- HERE YOUR CODE--> 
      </LinearLayout> 
     </HorizontalScrollView> 
    </LinearLayout> 
</ScrollView> 
+0

我想在scrollview裏面有水平列表 – alphanso

+0

是否可以使用recyler視圖 – alphanso

相關問題