diff options
author | Johannes Baiter <johannes.baiter@gmail.com> | 2014-10-29 11:27:48 +0100 |
---|---|---|
committer | Johannes Baiter <johannes.baiter@gmail.com> | 2014-10-29 11:27:48 +0100 |
commit | 741ce31abb9bcb82262461f9b8ec8101b962e6f0 (patch) | |
tree | 14646dd95eee783f59f712a2bba724199b1db4b6 /app/src/main | |
parent | 7d4b6683ef446c4a7317fe7cc450533ff18c6061 (diff) |
Fix namespaces for showAsAction attributes to icons show in ActioBar
Diffstat (limited to 'app/src/main')
-rw-r--r-- | app/src/main/res/menu/agp_intents.xml | 3 | ||||
-rw-r--r-- | app/src/main/res/menu/git_clone.xml | 3 | ||||
-rw-r--r-- | app/src/main/res/menu/pgp_handler.xml | 3 | ||||
-rw-r--r-- | app/src/main/res/menu/pwdstore.xml | 5 |
4 files changed, 9 insertions, 5 deletions
diff --git a/app/src/main/res/menu/agp_intents.xml b/app/src/main/res/menu/agp_intents.xml index 591b9525..8aa52dfa 100644 --- a/app/src/main/res/menu/agp_intents.xml +++ b/app/src/main/res/menu/agp_intents.xml @@ -1,8 +1,9 @@ <menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" + xmlns:pwstore="http://schemas.android.com/apk/res-auto" tools:context="com.zeapo.pwdstore.AgpIntentsActivity" > <item android:id="@+id/action_settings" android:title="@string/action_settings" android:orderInCategory="100" - android:showAsAction="never" /> + pwstore:showAsAction="never" /> </menu> diff --git a/app/src/main/res/menu/git_clone.xml b/app/src/main/res/menu/git_clone.xml index fa9dbf1c..e414f0b9 100644 --- a/app/src/main/res/menu/git_clone.xml +++ b/app/src/main/res/menu/git_clone.xml @@ -1,8 +1,9 @@ <menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" + xmlns:pwstore="http://schemas.android.com/apk/res-auto" tools:context="com.zeapo.pwdstore.GitHandler" > <item android:id="@+id/user_pref" android:title="@string/action_settings" android:orderInCategory="100" - android:showAsAction="never" /> + pwstore:showAsAction="never" /> </menu> diff --git a/app/src/main/res/menu/pgp_handler.xml b/app/src/main/res/menu/pgp_handler.xml index f9f88da8..fac4e163 100644 --- a/app/src/main/res/menu/pgp_handler.xml +++ b/app/src/main/res/menu/pgp_handler.xml @@ -1,9 +1,10 @@ <menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" + xmlns:pwstore="http://schemas.android.com/apk/res-auto" tools:context="com.zeapo.pwdstore.crypto.PgpHandler" > <item android:title="Copy password" android:icon="@drawable/ico_copy" - android:showAsAction="ifRoom" + pwstore:showAsAction="ifRoom" android:id="@+id/copy_password" /> </menu> diff --git a/app/src/main/res/menu/pwdstore.xml b/app/src/main/res/menu/pwdstore.xml index a3f44f73..7263f226 100644 --- a/app/src/main/res/menu/pwdstore.xml +++ b/app/src/main/res/menu/pwdstore.xml @@ -1,10 +1,11 @@ <menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" + xmlns:pwstore="http://schemas.android.com/apk/res-auto" tools:context=".pwdstore" > <item android:id="@+id/menu_add_password" android:icon="@drawable/ico_add" - android:showAsAction="always" + pwstore:showAsAction="always" android:title="New password"/> <!--<item android:id="@+id/menu_add_category"--> @@ -17,7 +18,7 @@ <item android:id="@+id/referesh" android:title="Refresh list" - android:showAsAction="never" + pwstore:showAsAction="never" android:icon="@drawable/ico_sync"/> <item android:id="@+id/user_pref" |