我是Android的新手,所以这对你们来说可能是一个简单的问题,但是我被困了。我想移除Toolbar
的阴影,所以我跟踪线程how to remove shadow below actionbar with AppCompat.Light.NoActionBar?并使用app:elevation="0dp"
我能够移除Toolbar
的阴影,但会更改{{1}的当前高度如[图2]中所示。我希望保持Toolbar
相同的确切大小,但没有阴影。我还使用了帖子Android toolbar height difference中的Toolbar
,但它在顶部移动android:fitsSystemWindows="true"
文字,并在底部创建了白线[图片3]。
Profile
<小时/>
我想我们可以使用<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:theme="@style/AppTheme.AppBarOverlay"
app:elevation="0dp"
android:fitsSystemWindows="true">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay"
android:minHeight="?attr/actionBarSize"/>
</android.support.design.widget.AppBarLayout>
或android:layout_height:Xdp
但这是最后一个选项,或者有默认方式来执行此操作。