-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
85effbb
commit d303f76
Showing
8 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<menu xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
<group | ||
android:id="@+id/group_navigation_bar" | ||
android:checkableBehavior="single"> | ||
|
||
<item | ||
android:id="@+id/item_edit_profile" | ||
android:icon="@drawable/edit" | ||
android:title="@string/edit_profile" /> | ||
|
||
<item | ||
android:id="@+id/item_add_payment_method" | ||
android:icon="@drawable/add" | ||
android:title="@string/add_payment_method_s" /> | ||
|
||
<item | ||
android:id="@+id/item_about" | ||
android:icon="@drawable/about" | ||
android:title="@string/about" /> | ||
|
||
<item | ||
android:id="@+id/item_help" | ||
android:icon="@drawable/help" | ||
android:title="@string/help" /> | ||
|
||
<item | ||
android:id="@+id/item_sign_out" | ||
android:icon="@drawable/signout" | ||
android:title="@string/sign_out" /> | ||
|
||
</group> | ||
|
||
</menu> |
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 |
---|---|---|
|
@@ -31,4 +31,9 @@ | |
<string name="name_dummy">John Doe</string> | ||
<string name="email_dummy">[email protected]</string> | ||
<string name="see_shopping_history">See Shopping History</string> | ||
<string name="edit_profile">Edit Profile</string> | ||
<string name="add_payment_method_s">Add Payment Method(s)</string> | ||
<string name="about">About</string> | ||
<string name="help">Help</string> | ||
<string name="sign_out">Sign Out</string> | ||
</resources> |