【发布时间】:2017-10-23 13:17:21
【问题描述】:
我想用
<android.support.v4.widget.NestedScrollView
android:id="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/action_bar"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:visibility="gone">
<RelativeLayout
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="220dp">
<ImageView
android:id="@+id/cover_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"/>
</RelativeLayout>
<RelativeLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/image"
android:background="@color/card_background">
<android.support.design.widget.TabLayout
android:id="@+id/topTabs"
style="@style/TextAppearance.Tab"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabBackground="@color/bpWhite"
app:tabGravity="fill"
app:tabMode="fixed"
app:tabTextColor="@color/secondary_text_color"
custom:tabIndicatorColor="@color/secondary_text_color"
custom:tabIndicatorHeight="2dp" />
<View
android:layout_width="match_parent"
android:layout_height="2dp"
android:layout_below="@id/topTabs"
android:background="@drawable/tab_layout_drop_shadow" />
</RelativeLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/tab_layout" />
</RelativeLayout>
</RelativeLayout>
</android.support.v4.widget.NestedScrollView>
无法滚动,view-pager 或 tab-layout 无法滚动我尝试了所有方法。
1.在view-pager中禁用touch事件,为scroll-view启用touch事件。
2.尝试了其他滚动视图,如 Nestedscrollview、Parallaxscrollview、协调器布局。如果我使用协调器布局,则无法更改工具栏。
- 我对所有滚动视图都使用了 fillviewport true。但它仍然无法滚动。
解决问题的任何其他方法。
【问题讨论】:
-
你能在你尝试过的地方添加你的完整xml吗
-
我无法读取您的 XML。顶部的杂物是什么?
-
@KalaBalik 你现在可以检查一下吗
标签: android android-viewpager scrollview android-nestedscrollview