-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update 'NavigationDrawer-Full Overlay' sample
Signed-off-by: Taeho Kim <[email protected]>
- Loading branch information
Showing
14 changed files
with
83 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+587 Bytes
...on_Drawer_FullOverlay/app/src/main/res/drawable-xxxhdpi/ic_check_white_24dp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+127 Bytes
...rawer_FullOverlay/app/src/main/res/drawable-xxxhdpi/ic_dashboard_black_24dp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+316 Bytes
...on_Drawer_FullOverlay/app/src/main/res/drawable-xxxhdpi/ic_event_black_24dp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.19 KB
..._Drawer_FullOverlay/app/src/main/res/drawable-xxxhdpi/ic_explore_black_24dp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+356 Bytes
...ion_Drawer_FullOverlay/app/src/main/res/drawable-xxxhdpi/ic_home_black_24dp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
...d/2014-11-17_Material_Navigation_Drawer_FullOverlay/app/src/main/res/menu/menu_drawer.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<menu xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<group android:checkableBehavior="single"> | ||
<item | ||
android:id="@+id/nav_dashboard" | ||
android:icon="@drawable/ic_dashboard_black_24dp" | ||
android:title="Dashboard" /> | ||
<item | ||
android:id="@+id/nav_explore" | ||
android:icon="@drawable/ic_explore_black_24dp" | ||
android:title="Explore" /> | ||
</group> | ||
|
||
<item android:title="Sub menu"> | ||
<menu> | ||
<item | ||
android:icon="@drawable/ic_event_black_24dp" | ||
android:title="Event" /> | ||
<item | ||
android:icon="@drawable/ic_home_black_24dp" | ||
android:title="Home" /> | ||
</menu> | ||
</item> | ||
</menu> |
4 changes: 2 additions & 2 deletions
4
.../2014-11-17_Material_Navigation_Drawer_FullOverlay/app/src/main/res/values-v21/styles.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<resources> | ||
|
||
<!-- Base application theme. --> | ||
<style name="AppTheme" parent="Theme.AppCompat.NoActionBar"> | ||
<style name="AppTheme" parent="BaseTheme"> | ||
<item name="android:windowDrawsSystemBarBackgrounds">true</item> | ||
<item name="android:statusBarColor">#33000000</item> | ||
<item name="android:statusBarColor">@android:color/transparent</item> | ||
</style> | ||
|
||
</resources> |
8 changes: 7 additions & 1 deletion
8
Android/2014-11-17_Material_Navigation_Drawer_FullOverlay/app/src/main/res/values/styles.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
<resources> | ||
|
||
<!-- Base application theme. --> | ||
<style name="AppTheme" parent="Theme.AppCompat.NoActionBar"> | ||
<style name="AppTheme" parent="BaseTheme"> | ||
<!-- Customize your theme here. --> | ||
</style> | ||
|
||
<style name="BaseTheme" parent="Theme.AppCompat.Light.NoActionBar"> | ||
<item name="colorPrimary">#00BCD4</item> | ||
<item name="colorPrimaryDark">#0097A7</item> | ||
<item name="colorAccent">#FFFF00</item> | ||
</style> | ||
|
||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...014-11-17_Material_Navigation_Drawer_FullOverlay/gradle/wrapper/gradle-wrapper.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Wed Apr 10 15:27:10 PDT 2013 | ||
#Sun Jul 19 22:21:16 KST 2015 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.1-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip |
38 changes: 19 additions & 19 deletions
38
Android/2015-07-12_Support_Design_Sample/app/src/main/res/menu/drawer.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<menu xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<group android:checkableBehavior="single"> | ||
<group android:checkableBehavior="single"> | ||
<item | ||
android:id="@+id/nav_dashboard" | ||
android:icon="@drawable/ic_dashboard_black_24dp" | ||
android:title="Dashboard" /> | ||
<item | ||
android:id="@+id/nav_explore" | ||
android:icon="@drawable/ic_explore_black_24dp" | ||
android:title="Explore" /> | ||
</group> | ||
|
||
<item android:title="Sub menu"> | ||
<menu> | ||
<item | ||
android:id="@+id/nav_dashboard" | ||
android:icon="@drawable/ic_dashboard_black_24dp" | ||
android:title="Dashboard" /> | ||
android:icon="@drawable/ic_event_black_24dp" | ||
android:title="Event" /> | ||
<item | ||
android:id="@+id/nav_explore" | ||
android:icon="@drawable/ic_explore_black_24dp" | ||
android:title="Explore" /> | ||
</group> | ||
|
||
<item android:title="Sub menu"> | ||
<menu> | ||
<item | ||
android:icon="@drawable/ic_event_black_24dp" | ||
android:title="Event" /> | ||
<item | ||
android:icon="@drawable/ic_home_black_24dp" | ||
android:title="Home" /> | ||
</menu> | ||
</item> | ||
android:icon="@drawable/ic_home_black_24dp" | ||
android:title="Home" /> | ||
</menu> | ||
</item> | ||
</menu> |