diff options
author | Martynas Mickevičius <mmartynas@gmail.com> | 2015-03-08 16:10:09 +0200 |
---|---|---|
committer | Martynas Mickevičius <mmartynas@gmail.com> | 2015-03-08 16:10:09 +0200 |
commit | 23d9368d169b2ce355b68711b0de3e77f742bedb (patch) | |
tree | 88dd38fd77e11ffb276a7e08f7e1b81479e2060c /src/main/res/menu | |
parent | f08ea668c3059995ea390ab566bd25f3a68b0ef1 (diff) | |
download | andiodine-23d9368d169b2ce355b68711b0de3e77f742bedb.tar.gz andiodine-23d9368d169b2ce355b68711b0de3e77f742bedb.zip |
Gradle build
Diffstat (limited to 'src/main/res/menu')
-rw-r--r-- | src/main/res/menu/fragment_list.xml | 10 | ||||
-rw-r--r-- | src/main/res/menu/main.xml | 11 | ||||
-rw-r--r-- | src/main/res/menu/pref.xml | 11 |
3 files changed, 32 insertions, 0 deletions
diff --git a/src/main/res/menu/fragment_list.xml b/src/main/res/menu/fragment_list.xml new file mode 100644 index 0000000..44f54e9 --- /dev/null +++ b/src/main/res/menu/fragment_list.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8"?> + +<menu xmlns:android="http://schemas.android.com/apk/res/android"> + <item + android:id="@+id/menu_main_add" + android:icon="@drawable/device_access_new_account" + android:showAsAction="always" + android:title="@string/fragment_list_add"> + </item> +</menu>
\ No newline at end of file diff --git a/src/main/res/menu/main.xml b/src/main/res/menu/main.xml new file mode 100644 index 0000000..4a179ff --- /dev/null +++ b/src/main/res/menu/main.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<menu xmlns:android="http://schemas.android.com/apk/res/android"> + + <item + android:id="@+id/menu_main_about" + android:icon="@drawable/action_help" + android:showAsAction="never" + android:title="@string/main_about"> + </item> + +</menu>
\ No newline at end of file diff --git a/src/main/res/menu/pref.xml b/src/main/res/menu/pref.xml new file mode 100644 index 0000000..a73acea --- /dev/null +++ b/src/main/res/menu/pref.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<menu xmlns:android="http://schemas.android.com/apk/res/android"> + + <item + android:id="@+id/menu_pref_delete" + android:icon="@drawable/delete" + android:title="@string/pref_delete" + android:showAsAction="always"> + </item> + +</menu>
\ No newline at end of file |