diff options
author | Alan Viverette <alanv@google.com> | 2011-07-26 12:06:51 -0700 |
---|---|---|
committer | Alan Viverette <alanv@google.com> | 2011-07-26 12:06:51 -0700 |
commit | 84c26a6b3d5da5c0f10995bcfb8635c24ff4083e (patch) | |
tree | 367ac5948724f122d31069c1f1414bdb42aac838 /res | |
parent | a7c32ad74996c9fcb0d1d1481f191f0720197e49 (diff) | |
download | packages_apps_settings-84c26a6b3d5da5c0f10995bcfb8635c24ff4083e.zip packages_apps_settings-84c26a6b3d5da5c0f10995bcfb8635c24ff4083e.tar.gz packages_apps_settings-84c26a6b3d5da5c0f10995bcfb8635c24ff4083e.tar.bz2 |
Fixed title bar bug for AccessibilityTutorial
Bug: 5080516
Change-Id: I2ef6dd4c96bef51e60a2ae9b081545219c821166
Diffstat (limited to 'res')
-rw-r--r-- | res/values-sw600dp/themes.xml | 21 | ||||
-rw-r--r-- | res/values/themes.xml | 3 |
2 files changed, 24 insertions, 0 deletions
diff --git a/res/values-sw600dp/themes.xml b/res/values-sw600dp/themes.xml new file mode 100644 index 0000000..22cf17e --- /dev/null +++ b/res/values-sw600dp/themes.xml @@ -0,0 +1,21 @@ +<?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> + + <style name="Theme.AccessibilityTutorialActivity" parent="@android:style/Theme.Holo.NoActionBar"> + </style> +</resources> diff --git a/res/values/themes.xml b/res/values/themes.xml index b5f8f64..2103de1 100644 --- a/res/values/themes.xml +++ b/res/values/themes.xml @@ -19,4 +19,7 @@ <style name="Theme.WifiDialog" parent="@*android:style/Theme.Holo.Dialog.Alert"> <item name="android:windowSoftInputMode">adjustResize</item> </style> + + <style name="Theme.AccessibilityTutorialActivity" parent="@android:style/Theme.Holo"> + </style> </resources> |