我在我的Galaxy S2中使用Jelly Bean。如果我在我的活動中不使用Theme屬性,它將使用「DefaultDevice」主題(我目前無法從Manifest中選擇不知道爲什麼)。如果我不需要刪除TitleBar,我不會使用Theme屬性。我的主題在使用「@ style/Theme」後發生了變化
有沒有什麼辦法可以用來舉例Holo?無法理解如何使用HoloEverywhere。我想爲我的應用獲得漂亮的EditText,Buttons和Spinners。目前的主題是來自Theme.Black! :(必須像從2.X Android版本
這是我的清單文件:。
<?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>
在此先感謝
[檢查此答案,我給了一陣子回來](http://stackoverflow.com/questions/14323117/old-theme-in-4-0-app/14323205#14323205) – Ahmad 2013-03-16 15:20:15