0
我在FrameLayout中使用ViewPager和RecyclerView。ViewPager與Recylerview保持不滾動
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".HomeActivity">
<android.support.v4.view.ViewPager
android:id="@+id/top_container"
android:layout_width="match_parent"
android:layout_height="300dp"
/>
<android.support.v7.widget.RecyclerView
android:id="@+id/regular_view"
android:clipToPadding="false"
android:paddingTop="300dp"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
我想隱藏ViewPager上RecyclerView的垂直滾動。這是工作。 但ViewPager的滾動不起作用。爲什麼會發生?
不應該的FrameLayout保持對彼此頂部的事情,在這種情況下,你會怎麼能夠得到ViewPager回來,正在發生的事情是RecyclerVIew採取覆蓋ViewPager – 2015-04-01 11:41:52
@Pankaj是感謝所有空間..得到它 – Bora 2015-04-01 11:44:12
你想要的就像DrawerLayout其中嵌入了佈局:) – 2015-04-01 11:45:45