我在Galaxy S2中使用Jelly Bean。如果我不在我的活动中使用Theme属性,它将使用“DefaultDevice”主题(我目前无法从Manifest中选择,不知道为什么)。如果我不需要删除TitleBar,我不会使用Theme属性。
有没有办法使用例如Holo?无法理解如何使用HoloEverywhere。我想为我的应用程序获得不错的EditText,Buttons和Spinners。目前的是来自Theme.Black,这很糟糕! :(必须像2.X安卓版。
这是我的清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.traincoders.impl"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="17" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:allowBackup="true">
<activity
android:label="@string/app_name"
android:name=".MainActivity"
android:theme="@android:style/Theme.Black.NoTitleBar">
</activity>
<activity
android:name=".SettingsActivity"
android:label="@string/settings_title"
android:theme="@android:style/Theme.Black.NoTitleBar">
</activity>
<activity
android:name=".SplashActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
提前致谢。
答案 0 :(得分:3)
在你的宣言中:
android:theme="@style/MyTheme"
值/ styles.xml:
<style name="MyTheme" parent="android:Theme">
</style>
值-V11 / styles.xml:
<style name="MyTheme" parent="android:Theme.Holo">
</style>
有了这个,你就可以在HC设备上使用Holo主题,在HC设备上使用黑色主题。