其他分享
首页 > 其他分享> > android – 底部应用栏导航图标不是中心垂直

android – 底部应用栏导航图标不是中心垂直

作者:互联网

我正在使用android.support.design.bottomappbar.BottomAppBar,但是当添加选项菜单时,导航图标将出现在左上角.

没有Option它按预期工作(center_vertical).

带选项菜单

enter image description here

没有选项菜单

enter image description here

任何人都可以告诉如何解决它吗?

解决方法:

尝试不同的方法后,通过样式设置填充.

<style name="NavButtonPadding" parent="@android:style/Widget.ActionButton">
    <item name="android:paddingStart">10dp</item>
    <item name="android:paddingEnd">10dp</item>
    <item name="android:minWidth">10dp</item>
</style>

After Adding styles

标签:android-appbarlayout,android,android-layout,android-bottomnav,bottombar
来源: https://codeday.me/bug/20190823/1697470.html