Skip to content

Commit 25f75b5

Browse files
committed
Adding sliding menu from net.simonvt.menudrawer
1 parent c2a0074 commit 25f75b5

24 files changed

+221
-14
lines changed

app/assets/fonts/Roboto-Regular.ttf

155 KB
Binary file not shown.

app/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<dagger.version>1.0.1</dagger.version>
2121
<otto.version>1.3.4</otto.version>
2222
<gson.version>2.2.4</gson.version>
23+
<menudrawer.version>3.0.2</menudrawer.version>
2324
</properties>
2425

2526
<dependencies>
@@ -56,7 +57,12 @@
5657
<version>${abs.version}</version>
5758
<type>apklib</type>
5859
</dependency>
59-
60+
<dependency>
61+
<groupId>net.simonvt.menudrawer</groupId>
62+
<artifactId>menudrawer</artifactId>
63+
<version>${menudrawer.version}</version>
64+
<type>apklib</type>
65+
</dependency>
6066
<dependency>
6167
<groupId>com.github.kevinsawicki</groupId>
6268
<artifactId>http-request</artifactId>

app/res/color/nav_text_selector.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
3+
<selector xmlns:android="http://schemas.android.com/apk/res/android">
4+
<item android:state_enabled="false" android:color="@color/nav_button_text_disabled" />
5+
<item android:color="@color/nav_button_text_light" />
6+
</selector>

app/res/drawable-hdpi/ic_drawer.png

963 Bytes
Loading

app/res/drawable-hdpi/ic_home.png

646 Bytes
Loading

app/res/drawable-hdpi/ic_timer.png

1.02 KB
Loading

app/res/drawable-mdpi/ic_drawer.png

955 Bytes
Loading

app/res/drawable-mdpi/ic_home.png

464 Bytes
Loading

app/res/drawable-mdpi/ic_timer.png

642 Bytes
Loading

app/res/drawable-xhdpi/ic_drawer.png

979 Bytes
Loading

0 commit comments

Comments
 (0)