2014-03-27 73 views
0

在Android Studio中,我的操作欄是綠色的。當我在測試我的手機操作欄回默認樣式應用...Android操作欄無法在手機上工作

我有一個三星Galaxy S3 Mini和代碼

<style name="MyTheme" parent="@android:style/Theme.Holo.Light"> 
    <item name="android:actionBarStyle">@style/MyActionBar</item> 
</style> 

<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar"> 
    <item name="android:background">#7FBF50</item> 
    <item name="android:titleTextStyle">@style/MyActionBar.Title</item> 
</style> 

<style name="MyActionBar.Title"> 
    <item name="android:textColor">#FFF</item> 
</style> 
+0

編輯您的文章,幷包括如何應用風格,請。 – adneal

回答

0

我遇到類似的問題時,我開發的平板電腦與手機。這可能是因爲你的版本中有多個不同的屏幕尺寸的價值目錄,特別是因爲它有一個不尋常的尺寸的S4迷你。嘗試刪除res目錄中與設備屏幕大小相對應的額外「value *」目錄(或者如果您希望在設備屏幕大小上具有相同的樣式,請將其除去默認目錄中的所有目錄)。

相關問題