2014-01-26 115 views

回答

0

覆蓋操作欄如下:android:actionBarStyle
創建您的自定義樣式(例如styles.xml)並覆蓋android:titleTextStyle

定義你的風格(CustomTheme和CustomActionBarStyle):

<style name="CustomTheme" parent="android:style/Theme.Holo"> 
    <item name="android:actionBarStyle">@style/CustomActionBarStyle</item> 
</style> 

<style name="CustomActionBarStyle" parent="@android:style/Widget.Holo.ActionBar"> 
    <item name="android:displayOptions"></item> 
</style> 

在你的清單,你必須設置你的主題:

android:theme="@style/CustomTheme"> 

這將刪除圖標和標題,只顯示操作項目。