Code Monkey home page Code Monkey logo

materialnavigationdrawer's Introduction

MaterialNavigationDrawer

Navigation Drawer Activity with material design style and simplified methods
Android Arsenal

It requires 14+ API and android support v7 (Toolbar)

Download example apk

How to use

In your Activity... ```java public class MyActivity extends MaterialNavigationDrawer {
@Override
public Fragment getCurrentFragment(int position) {
    switch(position) {
        case MaterialNavigationDrawer.SECTION_START:
          return new Fragment1();
        case MaterialNavigationDrawer.SECTION_START + 1:
          return new Fragment2();
          
        case MaterialNavigationDrawer.BOTTOM_SECTION_START:
          return new FragmentSettings();
          
        default: return new Fragment();
    }
}

@Override
public void init(Bundle savedInstanceState) {
    // set cover background
    this.setDrawerBackground(this.getResources().getDrawable(R.drawable.mat1));
    // set user photo and data
    this.setUserPhoto(this.getResources().getDrawable(R.drawable.photo));
    this.setUsername("NeoKree");
    this.setUserEmail("[email protected]");
    
    // add your sections
    this.addSection(this.newSection("Section 1"));
    this.addSection(this.newSection("Section 2",this.getResources().getDrawable(R.drawable.ic_mic_white_24dp)));
    this.addBottomSection(this.newBottomSection("Settings",this.getResources().getDrawable(R.drawable.ic_settings_black_24dp)));
}

@Override
public String getCurrentTitle(int position) {
    switch(position) {
        case MaterialNavigationDrawer.SECTION_START:
          return "My First Section";
        case MaterialNavigationDrawer.SECTION_START + 1:
          return "My Second Section";
          
        case MaterialNavigationDrawer.BOTTOM_SECTION_START:
          return "Settings";
          
        default: return "";
    }
}

}

In your styles.xml
```xml
<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/light_blue_500</item>
        <item name="colorPrimaryDark">@color/light_blue_800</item>
        <item name="colorAccent">@color/grey_1000</item>
        <item name="windowActionBar">false</item>
    </style>

</resources>

N.B. Not override OnCreate method! Use init method instead.

How to import

Android Studio
Download and add MaterialNavigationDrawerModule to your project as module.
Add this to your build.gradle: ```java dependencies { compile project(':MaterialNavigationDrawerModule') } ```

Limitations

Actually, this library have some limitations: - There are no possibility to add separators - There are no possibility to choose the color of section

These problems are currently in development

screenshot

screenshot

materialnavigationdrawer's People

Contributors

neokree avatar

Watchers

James Cloos avatar Evrim ÜLGEN avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.