diff options
Diffstat (limited to 'res/menu')
-rw-r--r-- | res/menu/manageaccounts.xml | 3 | ||||
-rw-r--r-- | res/menu/manageaccounts_context.xml | 17 |
2 files changed, 19 insertions, 1 deletions
diff --git a/res/menu/manageaccounts.xml b/res/menu/manageaccounts.xml index 63441919..1d81ba3c 100644 --- a/res/menu/manageaccounts.xml +++ b/res/menu/manageaccounts.xml @@ -2,7 +2,8 @@ <menu xmlns:android="http://schemas.android.com/apk/res/android" > <item android:id="@+id/action_add_account" android:showAsAction="always" - android:title="@string/action_add_account"/> + android:title="@string/action_add_account" + android:icon="@drawable/ic_action_add_person"/> <item android:id="@+id/action_settings" android:orderInCategory="100" diff --git a/res/menu/manageaccounts_context.xml b/res/menu/manageaccounts_context.xml new file mode 100644 index 00000000..30ba747d --- /dev/null +++ b/res/menu/manageaccounts_context.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<menu xmlns:android="http://schemas.android.com/apk/res/android" > + <item android:icon="@drawable/ic_action_delete" + android:title="Delete" + android:showAsAction="always" + /> + <item + android:id="@+id/account_disable" + android:title="Temporarily disable" + android:showAsAction="always"/> + <item + android:id="@+id/account_enable" + android:title="Enable" + android:showAsAction="always" + android:visible="false"/> + +</menu> |