diff options
author | Svetoslav <svetoslavganov@google.com> | 2013-09-05 00:18:48 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-09-05 00:18:48 +0000 |
commit | f7092bc6bfb16695d73f984d3c2cf557c63a17f1 (patch) | |
tree | 7ad707af08ec4126acbe81b41f2708d714ac9069 /res/menu | |
parent | 35ec3b7fa389e9a2ddc131eb3a75b2f3dbc8330e (diff) | |
parent | 2d531653595344ed7e61c093dca308b9ba7ec185 (diff) | |
download | packages_apps_Settings-f7092bc6bfb16695d73f984d3c2cf557c63a17f1.zip packages_apps_Settings-f7092bc6bfb16695d73f984d3c2cf557c63a17f1.tar.gz packages_apps_Settings-f7092bc6bfb16695d73f984d3c2cf557c63a17f1.tar.bz2 |
Merge "Implementing print settings as per UX spec." into klp-dev
Diffstat (limited to 'res/menu')
-rw-r--r-- | res/menu/print_service_settings.xml | 33 | ||||
-rw-r--r-- | res/menu/print_settings.xml | 23 |
2 files changed, 56 insertions, 0 deletions
diff --git a/res/menu/print_service_settings.xml b/res/menu/print_service_settings.xml new file mode 100644 index 0000000..1ed57ea --- /dev/null +++ b/res/menu/print_service_settings.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<menu xmlns:android="http://schemas.android.com/apk/res/android"> + <item + android:id="@+id/print_menu_item_add_printer" + android:title="@string/print_menu_item_add_printer" + android:showAsAction="ifRoom"> + </item> + <item + android:id="@+id/print_menu_item_settings" + android:title="@string/print_menu_item_settings" + android:showAsAction="ifRoom"> + </item> + <item + android:id="@+id/print_menu_item_uninstall" + android:title="@string/print_menu_item_uninstall" + android:showAsAction="never"> + </item> +</menu> diff --git a/res/menu/print_settings.xml b/res/menu/print_settings.xml new file mode 100644 index 0000000..44ddf50 --- /dev/null +++ b/res/menu/print_settings.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<menu xmlns:android="http://schemas.android.com/apk/res/android"> + <item + android:id="@+id/print_menu_item_download_print_service" + android:title="@string/print_menu_item_download_print_service" + android:showAsAction="ifRoom"> + </item> +</menu> |