GithubHelp home page GithubHelp logo

androidrepo / drawerlayouttoggles Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nikoladespotoski/drawerlayouttoggles

0.0 2.0 0.0 1.32 MB

Set of toggles for DrawerLayout. Everyone that has any idea, feel free to create pull request. Reverse-engineered toggles are welcomed.

drawerlayouttoggles's Introduction

DrawerLayoutToggles

#Description A set of navigation drawer toggle effects. Wrapper for using multiple custom Toggles in parallel. Wrapper for using ActionBarDrawerToggle with other toggles.

#Usage:

  • Import the library project and set it to your project.

Usage of other toggles along the ActionBarDrawerToggle:

        mAllToggles = new ActionBarDrawerToggleWrapper(this, mDrawerLayout, R.drawable.ic_drawer, R.string.drawer_open, R.string.drawer_close);
        mAllToggles.addPartnerToggle(new ContentDisplaceDrawerToggle(this, mDrawerLayout, R.id.content_frame));
        mAllToggles.setDrawerIndicatorEnabled(true);
        mDrawerLayout.setDrawerListener(mAllToggles);

Usage of other toggles along the ActionBarDrawerToggle:

        mAllToggles = new ActionBarDrawerToggleWrapper(this, mDrawerLayout, R.drawable.ic_drawer, R.string.drawer_open, R.string.drawer_close);
        mAllToggles.addPartnerToggle(new FadingDrawerToggle(mDrawerLayout));
        mAllToggles.setDrawerIndicatorEnabled(true);
        mDrawerLayout.setDrawerListener(mAllToggles);        

Usage of multiple toggles (without ActionBarDrawerToogle)

        DrawerToggleWrapper allTogglesWithoutActionBarToggle = new DrawerToggleWrapper();
        allTogglesWithoutActionBarToggle.addPartnerToggle(new ContentDisplaceDrawerToggle(this, mDrawerLayout, R.id.content_frame));
        allTogglesWithoutActionBarToggle.addPartnerToggle(new FadingDrawerToggle(mDrawerLayout));
        mDrawerLayout.setDrawerListener(allTogglesWithoutActionBarToggle);

Individual Usage 1:

        mContentDisplaceToggle = new ContentDisplaceDrawerToggle](this, mDrawerLayout, R.id.content_frame);
        mDrawerLayout.setDrawerListener(mContentDisplaceToggle);

Individual Usage 2:

        mFadingToggle = new FadingDrawerToggle(mDrawerLayout);
        mDrawerLayout.setDrawerListener(mFadingToggle);

Individual Usage 3:

 
        float targetAngle = 90f;
        mRotatingHomeIconToggle = new HomeIconDrawerToggle(this, mDrawerLayout, targetAngle);
        mDrawerLayout.setDrawerListener(mRotatingHomeIconToggle);

Individual Usage 4:

 
        mBlurToggle = new BlurShadowDrawerToggle(this, mDrawerLayout, findViewById(R.id.content_frame),GravityCompat.START);
        mDrawerLayout.setDrawerListener(mBlurToggle);

#Dependencies:

#Notes:

  • Usage examples are done on NavigationDrawer example from Android Developers guide.

drawerlayouttoggles's People

Contributors

nikoladespotoski avatar

Watchers

 avatar  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.