Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 | 2 |
| 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. | 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <!--Action bar buttons for the Android app's remote desktop viewer--> | 8 <!--Action bar buttons for the Android app's remote desktop viewer--> |
| 9 <menu xmlns:android="http://schemas.android.com/apk/res/android"> | 9 <menu xmlns:android="http://schemas.android.com/apk/res/android" |
| 10 xmlns:app="http://schemas.android.com/apk/res-auto"> | |
| 11 <item android:id="@+id/media_route_menu_item" | |
| 12 android:title="@string/media_route_menu_title" | |
| 13 app:actionProviderClass="android.support.v7.app.MediaRouteActionProv ider" | |
|
aiguha
2014/08/08 05:13:50
Cast button.
| |
| 14 app:showAsAction="always"/> | |
| 10 <item android:id="@+id/actionbar_keyboard" | 15 <item android:id="@+id/actionbar_keyboard" |
| 11 android:title="@string/show_hide_keyboard" | 16 android:title="@string/show_hide_keyboard" |
| 12 android:icon="@drawable/ic_action_keyboard" | 17 android:icon="@drawable/ic_action_keyboard" |
| 13 android:showAsAction="ifRoom"/> | 18 app:showAsAction="ifRoom"/> |
| 14 <item android:id="@+id/actionbar_hide" | 19 <item android:id="@+id/actionbar_hide" |
| 15 android:title="@string/full_screen" | 20 android:title="@string/full_screen" |
| 16 android:icon="@drawable/ic_action_full_screen" | 21 android:icon="@drawable/ic_action_full_screen" |
| 17 android:showAsAction="ifRoom"/> | 22 app:showAsAction="ifRoom"/> |
| 18 <item android:id="@+id/actionbar_send_ctrl_alt_del" | 23 <item android:id="@+id/actionbar_send_ctrl_alt_del" |
| 19 android:title="@string/send_ctrl_alt_del" | 24 android:title="@string/send_ctrl_alt_del" |
| 20 android:showAsAction="withText"/> | 25 app:showAsAction="withText"/> |
| 21 <item android:id="@+id/actionbar_disconnect" | 26 <item android:id="@+id/actionbar_disconnect" |
| 22 android:title="@string/disconnect_myself_button" | 27 android:title="@string/disconnect_myself_button" |
| 23 android:showAsAction="withText"/> | 28 app:showAsAction="withText"/> |
| 24 <!-- | 29 <!-- |
| 25 The Help option must be the final menu item and it must only appear in | 30 The Help option must be the final menu item and it must only appear in |
| 26 the action-bar overflow menu. | 31 the action-bar overflow menu. |
| 27 --> | 32 --> |
| 28 <item android:id="@+id/actionbar_help" | 33 <item android:id="@+id/actionbar_help" |
| 29 android:title="@string/actionbar_help" | 34 android:title="@string/actionbar_help" |
| 30 android:showAsAction="never"/> | 35 app:showAsAction="never"/> |
| 31 </menu> | 36 </menu> |
| OLD | NEW |