2015-02-08 115 views
0

有誰知道如何解決這個錯誤?錯誤,當我嘗試應用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" > 

但還是不起作用。

enter image description here

+0

我可以使它工作的唯一方法是改變styles.xml文件 <樣式名稱= 「AppTheme」 父=「主題。 AppCompat.Light.NoActionBar「> 這是唯一的方法嗎? – wiz 2015-02-08 20:50:09

回答

1
public class MainActivity extends ActionBarActivity { ... 

ActionBarActivity變化活動

+0

非常感謝!這正是我想要的。 – wiz 2015-02-08 21:26:13

+0

跟我一樣的男人。好學習 – 2015-02-08 22:54:21

相關問題