diff options
author | Dianne Hackborn <hackbod@google.com> | 2011-10-27 12:58:16 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2011-10-27 16:03:14 -0700 |
commit | d4c4b76889f2bd2e2e34ba9fc835370020524ded (patch) | |
tree | 3593975f3011e1ee7099420b8b01edaec91f2e97 /tests/FrameworkPerf/res/values | |
parent | e49cf107e2533b7ca71c500bc20a0f6dcdf9efdc (diff) | |
download | frameworks_base-d4c4b76889f2bd2e2e34ba9fc835370020524ded.zip frameworks_base-d4c4b76889f2bd2e2e34ba9fc835370020524ded.tar.gz frameworks_base-d4c4b76889f2bd2e2e34ba9fc835370020524ded.tar.bz2 |
New framework performance tests.
Change-Id: Ib8cc6704f508b7516ba0a30aa71bb88ef028691d
Diffstat (limited to 'tests/FrameworkPerf/res/values')
-rw-r--r-- | tests/FrameworkPerf/res/values/attrs.xml | 64 | ||||
-rw-r--r-- | tests/FrameworkPerf/res/values/strings.xml | 25 |
2 files changed, 89 insertions, 0 deletions
diff --git a/tests/FrameworkPerf/res/values/attrs.xml b/tests/FrameworkPerf/res/values/attrs.xml new file mode 100644 index 0000000..5823537 --- /dev/null +++ b/tests/FrameworkPerf/res/values/attrs.xml @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2011 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. +--> + +<resources> + <!-- Base attributes that are available to all Item objects. --> + <declare-styleable name="MenuItem"> + + <!-- The ID of the item. --> + <attr name="android:id" /> + + <!-- The category applied to the item. + (This will be or'ed with the orderInCategory attribute.) --> + <attr name="android:menuCategory" /> + + <!-- The order within the category applied to the item. + (This will be or'ed with the category attribute.) --> + <attr name="android:orderInCategory" /> + + <!-- The title associated with the item. --> + <attr name="android:title" /> + + <!-- The condensed title associated with the item. This is used in situations where the + normal title may be too long to be displayed. --> + <attr name="android:titleCondensed" /> + + <!-- The icon associated with this item. This icon will not always be shown, so + the title should be sufficient in describing this item. --> + <attr name="android:icon" /> + + <!-- The alphabetic shortcut key. This is the shortcut when using a keyboard + with alphabetic keys. --> + <attr name="android:alphabeticShortcut" /> + + <!-- The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key) + keyboard. --> + <attr name="android:numericShortcut" /> + + <!-- Whether the item is capable of displaying a check mark. --> + <attr name="android:checkable" /> + + <!-- Whether the item is checked. Note that you must first have enabled checking with + the checkable attribute or else the check mark will not appear. --> + <attr name="android:checked" /> + + <!-- Whether the item is shown/visible. --> + <attr name="android:visible" /> + + <!-- Whether the item is enabled. --> + <attr name="android:enabled" /> + </declare-styleable> +</resources> diff --git a/tests/FrameworkPerf/res/values/strings.xml b/tests/FrameworkPerf/res/values/strings.xml new file mode 100644 index 0000000..82fd713 --- /dev/null +++ b/tests/FrameworkPerf/res/values/strings.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2011 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. +--> + +<resources> + <string name="start">Start</string> + <string name="stop">Stop</string> + <string name="data_usage_menu_roaming">Data roaming</string> + <string name="data_usage_menu_restrict_background">Restrict background data</string> + <string name="data_usage_menu_split_4g">Separate 4G usage</string> + <string name="data_usage_menu_show_wifi">Show Wi-Fi usage</string> + <string name="data_usage_menu_show_ethernet">Show Ethernet usage</string> +</resources> |