diff options
author | Michael Bestas <mikeioannina@gmail.com> | 2014-07-11 16:27:30 +0300 |
---|---|---|
committer | Michael Bestas <mikeioannina@gmail.com> | 2014-07-30 10:47:07 +0000 |
commit | f501d205cecf6ed9ce1d887b88e2057133a840b6 (patch) | |
tree | 0a52591074cb8c394dfe52236ca02a173fd15d96 | |
parent | 2f99eeb6d21788bdd4925d0def7131088f3d1522 (diff) | |
download | device_samsung_galaxys2-common-f501d205cecf6ed9ce1d887b88e2057133a840b6.zip device_samsung_galaxys2-common-f501d205cecf6ed9ce1d887b88e2057133a840b6.tar.gz device_samsung_galaxys2-common-f501d205cecf6ed9ce1d887b88e2057133a840b6.tar.bz2 |
AdvancedDisplay: Update to 4.4 settings style
Change-Id: If2c0f8b1c42d3a09c8d795b0b17f7ff2325c56b8
-rw-r--r-- | AdvancedDisplay/AndroidManifest.xml | 3 | ||||
-rwxr-xr-x | AdvancedDisplay/res/drawable/ic_launcher_cmdevicesettings.png | bin | 11748 -> 0 bytes | |||
-rw-r--r-- | AdvancedDisplay/res/mipmap-hdpi/ic_launcher_settings.png | bin | 0 -> 8822 bytes | |||
-rw-r--r-- | AdvancedDisplay/res/mipmap-xhdpi/ic_launcher_settings.png | bin | 0 -> 12096 bytes | |||
-rw-r--r-- | AdvancedDisplay/res/values/themes.xml | 21 |
5 files changed, 23 insertions, 1 deletions
diff --git a/AdvancedDisplay/AndroidManifest.xml b/AdvancedDisplay/AndroidManifest.xml index bd470fa..ed67c63 100644 --- a/AdvancedDisplay/AndroidManifest.xml +++ b/AdvancedDisplay/AndroidManifest.xml @@ -10,10 +10,11 @@ <activity android:name="com.cyanogenmod.settings.device.DisplaySettings" android:launchMode="singleTop" - android:icon="@drawable/ic_launcher_cmdevicesettings" + android:icon="@mipmap/ic_launcher_settings" android:hardwareAccelerated="true" android:configChanges="orientation|keyboardHidden|screenSize" android:label="@string/app_name" + android:theme="@style/Theme.Main" android:excludeFromRecents="true" > <intent-filter> <action android:name="com.cyanogenmod.action.LAUNCH_DEVICE_SETTINGS" /> diff --git a/AdvancedDisplay/res/drawable/ic_launcher_cmdevicesettings.png b/AdvancedDisplay/res/drawable/ic_launcher_cmdevicesettings.png Binary files differdeleted file mode 100755 index 9bfdd78..0000000 --- a/AdvancedDisplay/res/drawable/ic_launcher_cmdevicesettings.png +++ /dev/null diff --git a/AdvancedDisplay/res/mipmap-hdpi/ic_launcher_settings.png b/AdvancedDisplay/res/mipmap-hdpi/ic_launcher_settings.png Binary files differnew file mode 100644 index 0000000..a8ccc89 --- /dev/null +++ b/AdvancedDisplay/res/mipmap-hdpi/ic_launcher_settings.png diff --git a/AdvancedDisplay/res/mipmap-xhdpi/ic_launcher_settings.png b/AdvancedDisplay/res/mipmap-xhdpi/ic_launcher_settings.png Binary files differnew file mode 100644 index 0000000..c3adce6 --- /dev/null +++ b/AdvancedDisplay/res/mipmap-xhdpi/ic_launcher_settings.png diff --git a/AdvancedDisplay/res/values/themes.xml b/AdvancedDisplay/res/values/themes.xml new file mode 100644 index 0000000..0df4907 --- /dev/null +++ b/AdvancedDisplay/res/values/themes.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014 The CyanogenMod 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.Main" parent="@android:style/Theme.Holo"> + <item name="android:actionBarStyle">@android:style/Widget.Holo.ActionBar.Solid</item> + </style> +</resources> |