android– 减少工具栏上导航图标和徽标之间的填充

android– 减少工具栏上导航图标和徽标之间的填充,第1张

概述有谁知道如何减少工具栏上的导航图标和徽标之间的填充.由于某种原因,它们之间似乎有更多的空间,然后在我的徽标和标题之间.我已经尝试添加样式并使用contentInset但它们似乎都不起作用.我的布局<android.support.v7.widget.Toolbarxmlns:android="http://schemas.android.com/

有谁知道如何减少工具栏上的导航图标和徽标之间的填充.由于某种原因,它们之间似乎有更多的空间,然后在我的徽标和标题之间.

我已经尝试添加样式并使用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 – 减少工具栏上导航图标和徽标之间的填充所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1120166.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存