Releases: mikepenz/MaterialDrawer
Releases · mikepenz/MaterialDrawer
v2.9.1
v2.9.0
UPGRADE NOTES
v2.9.0 now uses the latest com.android.support:appcompat version 22.1.1. Please update if you use an older version. It is now also required to set the theme within your layout for toolbars. (Especially for the DarkToolbar theme)
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:elevation="4dp"/>
Changes
- add new method withCustomView to change the whole Drawer content
- Modify darkToolbar behavior. Please see above
v2.8.2
v2.8.1
- new method to nest the drawer inside other views.
** the layout which will host the DrawerLayout have to contain a child which will be the content inside the drawer! - improve sample application
- add new sample CustomPrimaryDrawerItem
- add new sample for the nested Drawer functionality (.withRootView())
v2.8.0
v2.7.9
v2.7.8
v2.7.7
v2.7.6
v2.7.5
- NEW FEATURE - new custom OnCheckedChangeListener, with the DrawerItem in the event
- NEW FEATURE - new method to programmatically enable a translucentNavigationBar
- NEW FEATURE - withFullscreen. Set this if your theme has translucent status and translucent navigationBar and you want manage the paddings of the content view on your own
- FIX #191
- FIX #195
- FIX #95 && #183 (once again, had some remaining glitches)