AppBarLayout
在设计支持库中使用小部件时,工具栏底部会出现一个阴影。如何去除阴影?
AppBarLayout
在设计支持库中使用小部件时,工具栏底部会出现一个阴影。如何去除阴影?
Answers:
只需app:elevation="0dp"
在“ AppBarLayout”内部使用即可删除阴影。它一直为我工作。希望对你有效。
setOutlineProvider
仅当api版本> = 21时才会出现此问题,如果您不想更改高度,则可以使用:
appBar.setOutlineProvider(null);
记得检查api版本
编辑:
Blow是的源代码setOutlineProvider
。
/**
* Sets the {@link ViewOutlineProvider} of the view, which generates the Outline that defines
* the shape of the shadow it casts, and enables outline clipping.
* <p>
* The default ViewOutlineProvider, {@link ViewOutlineProvider#BACKGROUND}, queries the Outline
* from the View's background drawable, via {@link Drawable#getOutline(Outline)}. Changing the
* outline provider with this method allows this behavior to be overridden.
* <p>
* If the ViewOutlineProvider is null, if querying it for an outline returns false,
* or if the produced Outline is {@link Outline#isEmpty()}, shadows will not be cast.
* <p>
* Only outlines that return true from {@link Outline#canClip()} may be used for clipping.
*
* @see #setClipToOutline(boolean)
* @see #getClipToOutline()
* @see #getOutlineProvider()
*/
public void setOutlineProvider(ViewOutlineProvider provider) {
mOutlineProvider = provider;
invalidateOutline();
}
据说 If the ViewOutlineProvider is null, if querying it for an outline returns false, or if the produced Outline is {@link Outline#isEmpty()}, shadows will not be cast.
因此,如果要消除阴影,最好使用此方法,而不要设置app:elevation
。似乎更改高程以消除阴影是一种副作用。在某些情况下,更改高程可能会导致其他一些问题。
对于那些不想使用谁bringToFront()
和elevation="0dp"
使工具栏消失:
app:elevation="0dp"
结合android:translationZ="0.1dp"
为我工作。
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay"
app:elevation="0dp"
android:translationZ="0.1dp"
>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@null"
app:popupTheme="@style/AppTheme.PopupOverlay"/>
</android.support.design.widget.AppBarLayout>
使用最新的appcompat版本,app:elevation="0.1dp"
xml中的技巧设置不再起作用。
到目前为止,我已经找到了两种解决方案。
除了设置之外app:elevation
,请尝试使用stateListAnimator。例如,在代码中:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
StateListAnimator stateListAnimator = new StateListAnimator();
stateListAnimator.addState(new int[0], ObjectAnimator.ofFloat(appBarLayout, "elevation", 0.1f));
appBarLayout.setStateListAnimator(stateListAnimator);
}
一个更简单的方法是您仍然app:elevation="0dp"
在xml中正常设置,但在代码中设置:
appBarLayout.bringToFront();
值得关注的是以下两个讨论:
我尝试过app:elevation="0dp"
但工具栏消失了,但是使用app:elevation="0.1dp"
了技巧。
希望这对其他人有帮助。
v25.0.0
。
在您的AppBarLayout上添加app:elevation =“ 0dp”。像这个例子
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:elevation="0dp"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>