Skip to content

Releases: mikepenz/MaterialDrawer

v2.9.1

02 May 16:44
Compare
Choose a tag to compare
  • improve color handling

v2.9.0

28 Apr 09:34
Compare
Choose a tag to compare

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

23 Apr 18:35
Compare
Choose a tag to compare
  • FIX #246
  • FIX #252 (probably) change to android:theme instead of theme for the new appCompat style

v2.8.1

22 Apr 14:11
Compare
Choose a tag to compare
  • 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

22 Apr 08:59
Compare
Choose a tag to compare
  • upgrade to the newest com.android.support appcompat library v22.1.0
  • update Android-Iconics to v0.9.1
  • Colorful badges
  • improve and cleanup style

v2.7.9

14 Apr 19:40
Compare
Choose a tag to compare
  • FIX issue with wrong statusBar padding because of the latest UIUtils change
  • FIX #215 we now have a real elevation on the sticky drawer items ;)

v2.7.8

14 Apr 19:17
Compare
Choose a tag to compare
  • FIX #215
  • FIX #219
  • FIX #220 (At least i will now throw an RuntimeException with the info what to do)
  • Probably FIX #217

v2.7.7

12 Apr 11:15
Compare
Choose a tag to compare

v2.7.6

09 Apr 17:38
Compare
Choose a tag to compare

v2.7.5

07 Apr 20:15
Compare
Choose a tag to compare
  • 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)