您好,我想知道是否有可能以某种方式减少保证金,android:icon="@drawable/ic_credit_card_black_18dp"
为菜单项创建
`
<menu>
<item
android:id="@+id/menu_profile"
android:title="@string/settings_profile_title">
</item>
<item
android:id="@+id/menu_cards"
android:icon="@drawable/ic_credit_card_black_18dp"
app:showAsAction="always|withText"
android:title="@string/settings_cards_title">
</item>
<item
android:id="@+id/menu_notifications"
android:title="@string/settings_notifications_title">
</item>`
...
答案 0 :(得分:2)
你需要在styles.xml上创建一个样式,并将@ style / AppTheme设置为Activity的主题,如果我没记错,默认值是80dip或50dip(可能是宽度,你寻找高度)。
尝试在styles.xml中添加它
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:actionBarStyle">@style/CustomActionBarStyle</item>
</style>
<style name="CustomActionBarStyle" parent="AppBaseTheme">
<item name="android:minHeight">15dip</item>
<item name="android:maxHeight">15dip</item>
<item name="android:padding">0dip</item>
</style>