android studio toolbar 除掉左边距

来源:互联网 发布:sql server 实验报告 编辑:程序博客网 时间:2024/05/01 22:33

问题描述,我在一个toolbar 里面放了一个RelativeLayout ,发现 RelativeLayout   的match_parent  始终无法占满它的横屏,左边始终有距离,这样很丑。

解决方法:

在toolbar  属性栏里面添加四个属性

android:contentInsetStart="0dp"android:contentInsetLeft="0dp"app:contentInsetLeft="0dp"app:contentInsetStart="0dp"
 这样就完美的解决了

1 0
原创粉丝点击