有谁知道如何减少工具栏上的导航图标和徽标之间的填充.由于某种原因,它们之间似乎有更多的空间,然后在我的徽标和标题之间.
我已经尝试添加样式并使用contentInset但它们似乎都不起作用.
我的布局
<androID.support.v7.Widget.Toolbarxmlns:androID="http://schemas.androID.com/apk/res/androID"androID:layout_wIDth="match_parent"androID:layout_height="wrap_content"xmlns:app="http://schemas.androID.com/apk/res-auto"androID:background="@color/background_grey"androID:androID:contentInsetleft="0dp"androID:contentInsetStart="0dp"app:logo="@drawable/ic_launcher"></androID.support.v7.Widget.Toolbar>
我的风格
<style name="Toolbartheme" parent="theme.AppCompat"> <item name="androID:minWIDth">0dip</item> <item name="androID:paddingleft">0dip</item> <item name="androID:paddingRight">0dip</item></style>
Image (Space indicated by red lines should be smaller)
解决方法:
如果您只对缩小工具栏上导航图标和徽标之间的填充感兴趣,请使用
Toolbar.setContentInsetStartWithNavigation(0)
总结Unlike
contentInsetStart
, this will modify the inset only when there
is a Navigation Icon. In the absence of the Navigation Icon, you will
still have the 16dp start inset.
以上是内存溢出为你收集整理的android – 减少工具栏上导航图标和徽标之间的填充全部内容,希望文章能够帮你解决android – 减少工具栏上导航图标和徽标之间的填充所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)