У меня есть xml-макет, состоящий из двух разделов; В верхней части макета есть ViewPager, а под ним есть RecyclerView (слева).Как прокрутить View Pager + Recycler View в Android
Я хочу, чтобы просмотр recycler прокручивал ViewPager move и 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