Updated Theme
updated theme to pick the standard android theme if < api 11 else Holo Change-Id: I377442813ca0fe3a801c821d69f389f360fceeea Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
<activity
|
||||
android:name="GameListActivity"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@android:style/Theme.Holo" >
|
||||
android:theme="@style/MyTheme" >
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
@@ -25,19 +25,19 @@
|
||||
|
||||
<activity
|
||||
android:name="com.TwentyCodes.android.exception.ExceptionReportActivity"
|
||||
android:theme="@android:style/Theme.Holo" >
|
||||
android:theme="@style/MyTheme" >
|
||||
</activity>
|
||||
<activity
|
||||
android:name="ExaltedDice"
|
||||
android:theme="@android:style/Theme.Holo" >
|
||||
android:theme="@style/MyTheme" >
|
||||
</activity>
|
||||
<activity
|
||||
android:name="Settings"
|
||||
android:theme="@android:style/Theme.Holo" >
|
||||
android:theme="@style/MyTheme" >
|
||||
</activity>
|
||||
</application>
|
||||
|
||||
<uses-sdk android:minSdkVersion="3" />
|
||||
<uses-sdk android:minSdkVersion="4" />
|
||||
|
||||
<uses-permission android:name="android.permission.VIBRATE" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
|
||||
8
ExaltedDice/res/values-v11/theme.xml
Normal file
8
ExaltedDice/res/values-v11/theme.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<style name="MyTheme" parent="@android:style/Theme.Holo">
|
||||
<!-- Any customizations for your app running on devices with Theme.Holo here -->
|
||||
</style>
|
||||
|
||||
</resources>
|
||||
8
ExaltedDice/res/values/theme.xml
Normal file
8
ExaltedDice/res/values/theme.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<style name="MyTheme" parent="@android:style/Theme">
|
||||
<!-- Any customizations for your app running on pre-3.0 devices here -->
|
||||
</style>
|
||||
|
||||
</resources>
|
||||
Reference in New Issue
Block a user