HorizontalScrollView не работает в SlidingUpPanel
Макет выглядит следующим образом.
<com.sothree.slidinguppanel.SlidingUpPanelLayout
android:gravity="bottom"
sothree:umanoScrollableView="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:id="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</ScrollView>
</com.sothree.slidinguppanel.SlidingUpPanelLayout>
Версия библиотеки SlidingUpPanelLayout - 3.3.1. ScrollView может скользить нормально, но у HorizontalScrollView есть конфликт скольжения
1 ответ
Удалить родителя ScrollView
и использовать только HorizontalScrollView
,
<android.support.design.widget.TabLayout.SlidingTabStrip
android:gravity="bottom"
sothree:umanoScrollableView="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="match_parent">
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</android.support.design.widget.TabLayout.SlidingTabStrip>
И положить любой родительский взгляд внутри HorizontalScrollView
,