summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorAndrew Sapperstein <asapperstein@google.com>2014-08-20 17:35:01 -0700
committerAndrew Sapperstein <asapperstein@google.com>2014-08-20 17:35:01 -0700
commit4298aae13777495d0e5af0cdf7c74c6fe7ee48c5 (patch)
treea0b048a02d1e28c93c2577404ef46d0a123ac6a3 /res
parentc7dbcb673faf9f4503be3cc5e5535d3f0892cf18 (diff)
downloadandroid_packages_apps_UnifiedEmail-4298aae13777495d0e5af0cdf7c74c6fe7ee48c5.tar.gz
android_packages_apps_UnifiedEmail-4298aae13777495d0e5af0cdf7c74c6fe7ee48c5.tar.bz2
android_packages_apps_UnifiedEmail-4298aae13777495d0e5af0cdf7c74c6fe7ee48c5.zip
Use appcompat showAsAction for VacationResponder.
Change-Id: Iba184f3f25e8f42815057df87d4d3772e0dfa8da
Diffstat (limited to 'res')
-rw-r--r--res/menu/vacation_responder_menu.xml9
1 files changed, 5 insertions, 4 deletions
diff --git a/res/menu/vacation_responder_menu.xml b/res/menu/vacation_responder_menu.xml
index 829b4b1e1..184b24d9c 100644
--- a/res/menu/vacation_responder_menu.xml
+++ b/res/menu/vacation_responder_menu.xml
@@ -14,15 +14,16 @@
limitations under the License.
-->
-<menu xmlns:android="http://schemas.android.com/apk/res/android">
+<menu xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto">
<item android:id="@+id/action_cancel"
android:alphabeticShortcut="c"
android:title="@string/cancel"
android:icon="@drawable/ic_cancel_holo_light"
- android:showAsAction="withText|always" />
+ app:showAsAction="withText|always" />
<item android:id="@+id/action_done"
android:alphabeticShortcut="d"
android:title="@string/done"
android:icon="@drawable/ic_menu_done_holo_light"
- android:showAsAction="withText|always" />
-</menu> \ No newline at end of file
+ app:showAsAction="withText|always" />
+</menu>