1

I am using the ActionBar Compatibility, everything is OK, except the fact that by default, the buttons (actions) have some padding around.

How can I alter that padding for specific buttons, remove it, and in some cases adjust. enter image description here

4

1 に答える 1

0

カスタムレイアウトを作成し、スタイルを構成してActionBarにアタッチすることで、この問題を解決することができました。

<style name="ActionBar" parent="android:style/Widget.Holo.Light.ActionBar">
   <item name="android:displayOptions">showHome|useLogo|showCustom</item>
   <item name="android:customNavigationLayout">@layout/actionbar_custom_title</item>
</style>

今、別の問題が発生しました:あなたが私を助けることができるならこのスレッドを見てください:Android-アクションバーから「その他のアクション」ボタンを削除します

于 2012-06-09T12:49:24.383 に答える