开始滑动时,向上滑动面板完全打开。

时间:2018-12-14 12:17:50

标签: android

我正在使用umano向上滑动面板,并且我希望在向上滑动面板时逐渐打开面板。有没有办法做到这一点。

请在下面找到代码。

<com.sothree.slidinguppanel.SlidingUpPanelLayout
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 app:umanoShadowHeight="0dp"
 app:umanoOverlay="true"
 app:umanoDragView="@id/nested_scroll"
 android:id="@+id/slideup_panel"
 app:umanoPanelHeight="300dp"
 app:umanoScrollableView="@id/nested_scroll"
 android:gravity="bottom">

 <View
 android:layout_width="match_parent"
 android:layout_height="match_parent"/>

 <android.support.v4.widget.NestedScrollView
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:clickable="true"
  android:id="@+id/nested_scroll">

1 个答案:

答案 0 :(得分:0)

经过一番研究,您是否在样式中启用了windowActionBarOverlay?

<style name="AppTheme">
    <item name="android:windowActionBarOverlay">true</item>
</style>

我以前从未亲自使用过该库,因此可能是错误的,但值得一试

编辑: 您是否还在实现该库的最新版本,因为它看起来好像在其中使用滚动元素时存在问题,从而导致了问题 (参考:SlidingUpPanelLayout and ScrollView