You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Include `com.sothree.slidinguppanel.SlidingUpPanelLayout` as the root element in your activity layout.
35
35
* The layout must have `gravity` set to either `top` or `bottom`.
36
36
* Make sure that it has two children. The first child is your main layout. The second child is your layout for the sliding up panel.
37
37
* The main layout should have the width and the height set to `match_parent`.
38
38
* The sliding layout should have the width set to `match_parent` and the height set to either `match_parent`, `wrap_content` or the max desireable height.
39
-
* By default, the whole panel will act as a drag region and will intercept clicks and drag events. You can restrict the drag area to a specific view by using the `setDragView` method or `umanoDragView` attribute.
39
+
* By default, the whole panel will act as a drag region and will intercept clicks and drag events. You can restrict the drag area to a specific view by using the `setDragView` method or `umanoDragView` attribute.
40
40
41
41
For more information, please refer to the sample code.
42
42
@@ -83,7 +83,7 @@ or `?attr/actionBarSize` to support older API versions.
83
83
* Use `setTouchEnabled(false)` to disables panel's touch responsiveness (drag and click), you can still control the panel programatically
84
84
* Use `getPanelState` to get the current panel state
85
85
* Use `setPanelState` to set the current panel state
86
-
* You can add paralax to the main view by setting `umanoParalaxOffset` attribute (see demo for the example).
86
+
* You can add parallax to the main view by setting `umanoParallaxOffset` attribute (see demo for the example).
87
87
* You can set a anchor point in the middle of the screen using `setAnchorPoint` to allow an intermediate expanded state for the panel (similar to Google Maps).
88
88
* You can set a `PanelSlideListener` to monitor events about sliding panes.
89
89
* You can also make the panel slide from the top by changing the `layout_gravity` attribute of the layout to `top`.
@@ -112,6 +112,9 @@ If you have an awesome pull request, send it over!
112
112
113
113
### Changelog
114
114
115
+
* 3.2.0
116
+
* Rename `umanoParalaxOffset` to `umanoParallaxOffset`
117
+
* RecyclerView support.
115
118
* 3.1.0
116
119
* Added `umanoScrollableView` to supported nested scrolling in children (only ScrollView and ListView are supported for now)
0 commit comments