diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-05-01 00:26:54 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-05-01 00:26:54 +0200 |
commit | 61deb1b6598f2816125525c8621b08e047172768 (patch) | |
tree | 436cd91b85b5f1f704ea22e041c8d12dfb51ed8f /res/menu/logmenu.xml | |
parent | 370fa3686c7bfa74ed4b26c253ad0ba391bd34c4 (diff) |
The real 0.4.6 version as being pushed to the market.
adds working clear and disconnect buttons to log window
Diffstat (limited to 'res/menu/logmenu.xml')
-rw-r--r-- | res/menu/logmenu.xml | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/res/menu/logmenu.xml b/res/menu/logmenu.xml index 5fcadae0..80331c5e 100644 --- a/res/menu/logmenu.xml +++ b/res/menu/logmenu.xml @@ -1,9 +1,17 @@ <?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
-<item android:id="@+id/clearlog"
- android:icon="@android:drawable/ic_menu_crop"
- android:title="clear log"
- android:showAsAction="ifRoom"
- />
+
+ <item
+ android:id="@+id/clearlog"
+ android:icon="@drawable/ic_menu_trash_holo_light"
+ android:showAsAction="ifRoom|withText"
+ android:title="@string/clear_log"/>
+
+ <item android:id="@+id/cancel"
+ android:icon="@android:drawable/ic_menu_close_clear_cancel"
+ android:showAsAction="ifRoom|withText"
+ android:title="@string/cancel_connection"
+ />
+
</menu>
\ No newline at end of file |