本文主要是介绍AppBarLayout 嵌套 Toolbar控件去掉阴影以及 去掉左侧默认间距,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
下面咱们先看下没处理时出现的问题:
Toolbar默认左侧默认有间距,我们只需要一行代码就可以消除此间距:
app:contentInsetStart="0dp"
去掉下面的阴影效果需要在AppBarLayout上添加一行代码:
app:elevation="0dp"
<android.support.design.widget.AppBarLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:background="#fff"app:elevation="0dp"><android.support.v7.widget.Toolbarandroid:id="@+id/toolbar"android:layout_width="match_parent"android:layout_height="45dp"app:contentInsetStart="0dp"></android.support.v7.widget.Toolbar></android.support.design.widget.AppBarLayout>
如果你添加了代码报红,那是因为你没有在根布局添加:
xmlns:app="http://schemas.android.com/apk/res-auto"
这样 问题就解决了;
这篇关于AppBarLayout 嵌套 Toolbar控件去掉阴影以及 去掉左侧默认间距的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!