Skip to content

Instantly share code, notes, and snippets.

View zirouan's full-sized avatar
🚀
Be Bold

Rudson Lima zirouan

🚀
Be Bold
View GitHub Profile
@zirouan
zirouan / Other methods - Navigation Drawer - Material Design
Last active August 29, 2015 14:13
Other methods - Navigation Drawer - Material Design
/*{ First item of the position selected from the list }*/
public void setDefaultStartPositionNavigation(int position){}
/*{ get position in the last clicked item list }*/
public int getCurrentPosition(){}
/*{ If not want to use the footer item just put false }*/
public void setFooterNavigationVisible(boolean visible){}
/*{ Item color selected in the list - name and icon }*/
@zirouan
zirouan / Color theme - NavigationDrawer-Material Design
Last active August 22, 2017 12:36
Color theme - NavigationDrawer-Material Design
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="nliveo_white">#ffffff</color>
<color name="nliveo_grey">#e0e0e0</color>
<color name="nliveo_black">#000000</color>
<color name="nliveo_transparent">#00000000</color>
<color name="nliveo_blue_colorPrimary">#2196F3</color>
<color name="nliveo_blue_colorPrimaryDark">#1976D2</color>
<color name="nliveo_blue_alpha_colorPrimaryDark">#801976D2</color>