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.
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.
カスタムレイアウトを作成し、スタイルを構成して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-アクションバーから「その他のアクション」ボタンを削除します