GithubHelp home page GithubHelp logo

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.

#Sample APK: https://db.tt/vus4McKy

#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

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

drawerlayouttoggles's Issues

Sorry

Hi,
Sorry to write this here. Not really an issue. I am learning to use android and I wanted to try to add this to a project. The instructions say "Import the library project and set it to your project.". How do I do that?

GravityCompat.END dont work

Hi, do not work library if use android:layout_gravity="end" (slide to left)

ContentDisplaceDrawerToggle contentDisplaceToggle = new ContentDisplaceDrawerToggle(getActivity(), mDrawerLayout, R.id.main_content, GravityCompat.END);
mDrawerLayout.setDrawerListener(contentDisplaceToggle);

App sample

Hi,

Can you give access to a sample application using your library. Throught Google Play or your Github.

Thanks,

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.