# MaterialDrawer **Repository Path**: wowtop/MaterialDrawer ## Basic Information - **Project Name**: MaterialDrawer - **Description**: No description available - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: develop - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-12-18 - **Last Updated**: 2021-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # MaterialDrawer ... the flexible, easy to use, all in one drawer library for your Android project. -------

What's included ๐Ÿš€Setup ๐Ÿ› ๏ธMigration Guide ๐ŸงฌWIKI / FAQ ๐Ÿ“–Used bySample App

------- ### What's included ๐Ÿš€ - **the easiest possible integration** - **uses the androidX support libraries** - compatible down to **API Level 16** - includes an **AccountSwitcher** - quick and simple api - follows the **NEW Google Material Design Guidelines** - use **vector** (.svg) icons and **icon fonts** via the [Android-Iconics](https://github.com/mikepenz/Android-Iconics) integration - **Google Material Design Icons**, Google **Material Community** Design Icons, FontAwesome and more - comes with various **themes** which help to get your own themes clean - modify the colors on the go - comes with multiple default drawer items - based on a **RecyclerView** - **RTL** support - Gmail like **MiniDrawer** - expandable items - **badge** support - define custom drawer items - tested and **stable** - sticky footer or headers - **absolutely NO limits** - NavController support by @petretiandrea > If you upgrade from < 8.0.0 follow the [MIGRATION GUIDE](https://github.com/mikepenz/MaterialDrawer/blob/develop/MIGRATION.md) # Preview ## Screenshots ๐ŸŽ‰ ![Image](DEV/github/screenshots_combined.jpg) # Setup ## Latest releases ๐Ÿ›  - Kotlin && Material 3 | [v9.0.0-a03](https://github.com/mikepenz/MaterialDrawer/tree/v9.0.0-a03) - Kotlin | [v8.4.5](https://github.com/mikepenz/MaterialDrawer/tree/v8.4.5) - Java && AndroidX | [v6.1.2](https://github.com/mikepenz/MaterialDrawer/tree/v6.1.2) - Java && AppCompat | [v6.0.9](https://github.com/mikepenz/MaterialDrawer/tree/v6.0.9) ### 1. Provide the gradle dependency ```gradle implementation "com.mikepenz:materialdrawer:${lastestMaterialDrawerRelease}" //required support lib modules implementation "androidx.appcompat:appcompat:${versions.appcompat}" implementation "androidx.recyclerview:recyclerview:${versions.recyclerView}" implementation "androidx.annotation:annotation:${versions.annotation}" implementation "com.google.android.material:material:1.5.0-alpha05" // requires at least 1.5.0-x implementation "androidx.constraintlayout:constraintlayout:${versions.constraintLayout}" // Add for NavController support implementation "com.mikepenz:materialdrawer-nav:${lastestMaterialDrawerRelease}" // Add for Android-Iconics support implementation "com.mikepenz:materialdrawer-iconics:${lastestMaterialDrawerRelease}" ``` You can find dependency versions and all library releases on [MVN Repository](https://mvnrepository.com/artifact/com.mikepenz/materialdrawer). ### 2. Add the `Drawer` into the XML The `MaterialDrawerSliderView` has to be provided as child of the `DrawerLayout` and will as such act as the slider ```kotlin ... your content ... ``` ### 3. Add the `DrawerStyle` to your theme ```xml ``` Great. Your drawer is now ready to use. ### Note > Using v9.x with Material 3 theming requires a `Material3` theme as base for the activity. # Additional Setup ### Add items and adding some functionality ```kotlin //if you want to update the items at a later time it is recommended to keep it in a variable val item1 = PrimaryDrawerItem().apply { nameRes = R.string.drawer_item_home; identifier = 1 } val item2 = SecondaryDrawerItem().apply { nameRes = R.string.drawer_item_settings; identifier = 2 } // get the reference to the slider and add the items slider.itemAdapter.add( item1, DividerDrawerItem(), item2, SecondaryDrawerItem().apply { nameRes = R.string.drawer_item_settings } ) // specify a click listener slider.onDrawerItemClickListener = { v, drawerItem, position -> // do something with the clicked item :D false } ``` ### Selecting an item ```kotlin //set the selection to the item with the identifier 1 slider.setSelection(1) //set the selection to the item with the identifier 2 slider.setSelection(item2) //set the selection and also fire the `onItemClick`-listener slider.setSelection(1, true) ``` By default, when a drawer item is clicked, it becomes the new selected item. If this isn't the expected behavior, you can disable it for this item using `isSelectable = false`: ```kotlin SecondaryDrawerItem().apply { nameRes = R.string.drawer_item_dialog; isSelectable = false } ``` ### Modify items or the drawer ```kotlin //modify an item of the drawer item1.apply { nameText = "A new name for this drawerItem"; badge = StringHolder("19") badgeStyle = BadgeStyle().apply { textColor = ColorHolder.fromColor(Color.WHITE); color = ColorHolder.fromColorRes(R.color.md_red_700) } } //notify the drawer about the updated element. it will take care about everything else slider.updateItem(item1) //to update only the name, badge, icon you can also use one of the quick methods slider.updateName(1, "A new name") //the result object also allows you to add new items, remove items, add footer, sticky footer, .. slider.addItem(DividerDrawerItem()) slider.addStickyFooterItem(PrimaryDrawerItem().apply { nameTest = "StickyFooter" }) //remove items with an identifier slider.removeItem(2) //open / close the drawer slider.drawerLayout?.openDrawer(slider) slider.drawerLayout?.closeDrawer(slider) //get the reference to the `DrawerLayout` itself slider.drawerLayout ``` ### Add profiles and an AccountHeader ```kotlin // Create the AccountHeader headerView = AccountHeaderView(this).apply { attachToSliderView(slider) // attach to the slider addProfiles( ProfileDrawerItem().apply { nameText = "Mike Penz"; descriptionText = "mikepenz@gmail.com"; iconRes = R.drawable.profile; identifier = 102 } ) onAccountHeaderListener = { view, profile, current -> // react to profile changes false } withSavedInstance(savedInstanceState) } ``` ### Android-Iconics support The MaterialDrawer provides an extension for the [Android-Iconics](https://github.com/mikepenz/Android-Iconics) library. This allows you to create your `DrawerItems` with an icon from any font. Choose the fonts you need. [Available Fonts](https://github.com/mikepenz/Android-Iconics#2-choose-your-desired-fonts) ```gradle // Add for Android-Iconics support implementation "com.mikepenz:materialdrawer-iconics:${lastestMaterialDrawerRelease}" // fonts implementation 'com.mikepenz:google-material-typeface:x.y.z@aar' //Google Material Icons implementation 'com.mikepenz:fontawesome-typeface:x.y.z@aar' //FontAwesome ``` ```kotlin //now you can simply use any icon of the Google Material Icons font PrimaryDrawerItem().apply { iconicsIcon = GoogleMaterial.Icon.gmd_wb_sunny } //Or an icon from FontAwesome SecondaryDrawerItem().apply { iconicsIcon = FontAwesomeBrand.Icon.fab_github } ``` # Advanced Setup For advanced usecases. Please have a look at the provided sample activities. ## Load images via url The MaterialDrawer supports fetching images from URLs and setting them for the Profile icons. As the MaterialDrawer does not contain an ImageLoading library the dev can choose his own implementation (Picasso, Glide, ...). This has to be done, before the first image should be loaded via URL. (Should be done in the Application, but any other spot before loading the first image is working too) * SAMPLE using [PICASSO](https://github.com/square/picasso) * [SAMPLE](https://github.com/mikepenz/MaterialDrawer/blob/develop/app/src/main/java/com/mikepenz/materialdrawer/app/CustomApplication.kt) using [GLIDE](https://github.com/bumptech/glide) ```kotlin //initialize and create the image loader logic DrawerImageLoader.init(object : AbstractDrawerImageLoader() { override fun set(imageView: ImageView, uri: Uri, placeholder: Drawable) { Picasso.get().load(uri).placeholder(placeholder).into(imageView) } override fun cancel(imageView: ImageView) { Picasso.get().cancelRequest(imageView) } /* override fun set(imageView: ImageView, uri: Uri, placeholder: Drawable, tag: String?) { super.set(imageView, uri, placeholder, tag) } override fun placeholder(ctx: Context): Drawable { return super.placeholder(ctx) } override fun placeholder(ctx: Context, tag: String?): Drawable { return super.placeholder(ctx, tag) } */ }) ``` An implementation with [GLIDE v4](https://github.com/mikepenz/MaterialDrawer/blob/develop/app/src/main/java/com/mikepenz/materialdrawer/app/CustomApplication.kt) (See tag v6.1.1 for glide v3 sample) can be found in the sample application ## JVM Target 1.8 ``` // Since 8.1.0 the drawer includes core ktx 1.3.0 which requires jvm 1.8 kotlinOptions { jvmTarget = "1.8" } ``` ## Style the drawer ๐Ÿ–Œ๏ธ ### Custom style - styles.xml Create your custom style. If you don't need a custom theme see the next section, how you can set the colors just by overwriting the original colors. ```xml // define a custom drawer style // define a custom header style // define the custom styles for the theme ``` ### Adjust BezelImageView style Overwrite the Style of the BezelImageView for the whole MaterialDrawer ```xml ``` # Used by (feel free to send me new projects) * [Screener](https://play.google.com/store/apps/details?id=de.toastcode.screener) * [Meldmail](https://play.google.com/store/apps/details?id=com.meldmail) * [Academic Schedule](https://play.google.com/store/apps/details?id=com.auebcsschedule.ppt) * [Sprit Club](https://play.google.com/store/apps/details?id=at.idev.spritpreise) * [StickyNotes](https://play.google.com/store/apps/details?id=com.jsvmsoft.stickynotes) * [MLManager](https://github.com/javiersantos/MLManager) * [Fimpl](https://play.google.com/store/apps/details?id=com.danielZET.fimpl) * [Teacher Gradebook](https://play.google.com/store/apps/details?id=com.apolosoft.cuadernoprofesor) * [AS Sales Management](https://play.google.com/store/apps/details?id=com.armsoft.mtrade) * [Sporza Voetbal](http://play.google.com/store/apps/details?id=be.vrt.mobile.android.sporza.voetbal) * [Atmosphere](https://play.google.com/store/apps/details?id=com.peakpocketstudios.atmosphere) * [Fitness Challenge](https://play.google.com/store/apps/details?id=com.isidroid.fitchallenge) * [I'm Reading Quran - Kur'an Okuyorum](https://play.google.com/store/apps/details?id=com.homemade.kuranokuma) * [Makota Money Manager](https://play.google.com/store/apps/details?id=be.jatra.makota) * [Companion for Band](https://github.com/adithya321/Companion-for-Band) * [Recipedia](https://play.google.com/store/apps/details?id=com.md.recipedia) * [Right ะกourse - ruble course](https://play.google.com/store/apps/details?id=com.currency.work.currencychecker) * [Gameru](https://play.google.com/store/apps/details?id=net.gameru) * [Boost for reddit](https://play.google.com/store/apps/details?id=com.rubenmayayo.reddit) * [Calendula](https://github.com/citiususc/calendula) * [MyTimes](https://github.com/debo1994/MyTimes) * [VoIP By Antisip](https://play.google.com/store/apps/details?id=com.antisip.vbyantisip) * [MBox - One Place for Entertainment](https://play.google.com/store/apps/details?id=com.paperwrrk.android.mbox) * [D Notes - Smart and Material Note Taking](https://play.google.com/store/apps/details?id=com.dvdb.bergnotes) * [Moviebase](https://play.google.com/store/apps/details?id=com.moviebase) * [MyFuelLog2](https://play.google.com/store/apps/details?id=com.acty.myfuellog2) * [MECSol](https://play.google.com/store/apps/details?id=tk.rlta.mecsol) * [3D Geeks: Thingiverse Browser for 3D Printing](https://play.google.com/store/apps/details?id=work.twob.threed) * [Tusky: Mastodon Client for Android](https://github.com/tuskyapp/Tusky) * [Tibia Live](https://tibia.space/) * [Walkaholic](https://play.google.com/store/apps/details?id=com.walkaholic.hikeapp) # Articles about the MaterialDrawer * [java-help.ru - MaterialDrawer tutorial](http://java-help.ru/material-navigationdrawer/) * [MaterialDrawer in multiple activities](https://android.jlelse.eu/android-using-navigation-drawer-across-multiple-activities-the-easiest-way-b011f152aebd) # Credits - Mirosล‚aw Stanek - [GitHub](https://github.com/frogermcs) - For his InstaMaterial concept and the idea of inflating the drawerLayout [InstaMaterial Concept](http://frogermcs.github.io/InstaMaterial-concept-part-7-navigation-drawer/) - Lunae Luman - [Behance](https://www.behance.net/gallery/18526001/Material-Wallpaper) for the Header Image # Developed By - Mike Penz - [mikepenz.dev](https://mikepenz.dev) - [blog.mikepenz.dev](https://blog.mikepenz.dev) - - [paypal.me/mikepenz](http://paypal.me/mikepenz) - [Automatic changelog generation action](https://github.com/marketplace/actions/release-changelog-builder) # License Copyright 2021 Mike Penz Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.