0

我有一個由兩部分組成的xml佈局; 在佈局頂部有一個ViewPager,在它下面有一個RecyclerView。(左圖)。如何在Android中滾動查看傳呼機+回收站視圖

我希望當回收站視圖向上滾動ViewPager移動和fadeOut。

enter image description here

我的XML佈局代碼是:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 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.view.ViewPager 
    android:id="@+id/slider" 
    android:layout_width="match_parent" 
    android:layout_height="200dp" /> 

<android.support.v7.widget.RecyclerView 
    android:id="@+id/lstLatestNews" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_below="@id/slider" /></LinearLayout> 

回答

-1

你剛纔您的滾動視圖內佈局

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="wrap_content" 
android:background="@color/white" 
android:padding="10dp" 
android:scrollbars="none"> 

<LinearLayout 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.view.ViewPager 
android:id="@+id/slider" 
android:layout_width="match_parent" 
android:layout_height="200dp" /> 

<android.support.v7.widget.RecyclerView 
android:id="@+id/lstLatestNews" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:layout_below="@id/slider" /> 
</LinearLayout> 

</ScrollView> 
+0

感謝您的回覆,我做到了,但Recycler View消失了! – esmaeil

0

可以使用CoordinatorLayout + AppBarLayout + CollapsingToolbarLayout

<android.support.design.widget.CoordinatorLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 

     <android.support.design.widget.AppBarLayout 
      android:id="@+id/appbar_group_purchase" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content"> 
      <!--廣告欄--> 
      <android.support.design.widget.CollapsingToolbarLayout 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       app:layout_scrollFlags="scroll"> 

       <com.youth.banner.Banner 
        android:id="@+id/banner_home_group_purchase" 
        android:layout_width="match_parent" 
        android:layout_height="@dimen/banner_height" /> 
      </android.support.design.widget.CollapsingToolbarLayout> 
      <!--類別Tab--> 
      <include layout="@layout/layout_tab_more" /> 
     </android.support.design.widget.AppBarLayout> 

     <!--分類視圖--> 
     <android.support.v4.view.ViewPager 
      android:id="@+id/vp_home_group_purchase" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:background="@color/white" 
      app:layout_behavior="@string/appbar_scrolling_view_behavior" /> 

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

使用viewpager替換banner並使用recyclerview替換viewpager – FunyFate

相關問題