有誰知道如何解決這個錯誤?錯誤,當我嘗試應用Theme.Holo.Light.NoActionBar
當我在AndroidManifest.xml中添加一行時,它不起作用。
android:theme="@android:style/Theme.Holo.Light.NoActionBar">
像這樣。
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
我也試圖改變
android:theme="@style/AppTheme" >
到
android:theme="@style/Theme.AppCompat" >
但還是不起作用。
我可以使它工作的唯一方法是改變styles.xml文件 <樣式名稱= 「AppTheme」 父=「主題。 AppCompat.Light.NoActionBar「> 這是唯一的方法嗎? – wiz 2015-02-08 20:50:09