Use Holo Light theme if it's available, otherwise Light.

This commit is contained in:
akwizgran
2012-11-07 15:16:42 +00:00
parent ccff166650
commit 3940614203
3 changed files with 9 additions and 1 deletions

View File

@@ -13,7 +13,7 @@
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
<application
android:theme="@android:style/Theme.Light"
android:theme="@style/LightTheme"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<service

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="LightTheme" parent="android:Theme.Holo.Light" />
</resources>

4
res/values/styles.xml Normal file
View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="LightTheme" parent="android:Theme.Light" />
</resources>