1
你好,我有應用程序的操作欄,風格Theme.Holo.Light。但我希望在操作欄中只有動作按鈕。沒有應用程序名稱和圖標的標籤。我該怎麼做 ?刪除操作欄中的標籤和應用程序圖標
你好,我有應用程序的操作欄,風格Theme.Holo.Light。但我希望在操作欄中只有動作按鈕。沒有應用程序名稱和圖標的標籤。我該怎麼做 ?刪除操作欄中的標籤和應用程序圖標
覆蓋操作欄如下: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">
這將刪除圖標和標題,只顯示操作項目。