Open HarisHashim opened 7 years ago
I got the same problem. Have you found a solution for it?
I'm interested in this too.
i finally use addPanelSlideListener -> onPanelSlide(View panel, float slideOffset) , to set layout myself
I got this problem too, solved it, set the app:umanoOverlay="true" to "false"
<com.sothree.slidinguppanel.SlidingUpPanelLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" app:umanoOverlay="false" android:gravity="bottom">
In master Readme.md
"By default, the panel pushes up the main content. You can make it overlay the main content by using setOverlayed method or umanoOverlay attribute. This is useful if you would like to make the sliding layout semi-transparent. You can also set umanoClipPanel to false to make the panel transparent in non-overlay mode."
My sliding up panel is overlaying the main content panel instead of pushing it up. Since my main panel contain list of item that is scroll-able. The sliding panel will cover item that is in the bottom. I am hoping to show the bottom item if it push up instead of overlayed (as current default).
My expectation is that umanoOverlay attribute can be set to false to make this happen. However I can not find umanoOverlay attribute in the layout.
This is my layout if it helps: