Fix namespaces for showAsAction attributes to icons show in ActioBar
This commit is contained in:
parent
7d4b6683ef
commit
741ce31abb
4 changed files with 9 additions and 5 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue