我有一個由兩部分組成的xml佈局; 在佈局頂部有一個ViewPager,在它下面有一個RecyclerView。(左圖)。如何在Android中滾動查看傳呼機+回收站視圖
我希望當回收站視圖向上滾動ViewPager移動和fadeOut。
我的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>
感謝您的回覆,我做到了,但Recycler View消失了! – esmaeil