我已经创建了像这样的AppBar布局
<android.support.design.widget.AppBarLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/appbar_layout"
android:layout_height="@dimen/app_bar_height"
android:layout_width="match_parent"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:elevation="20dp">
<android.support.design.widget.CollapsingToolbarLayout...>
</android.support.design.widget.AppBarLayout>
它可以在LinearLayout中投射阴影:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/app_bar_large" />
</LinearLayout>
但是,当我把它放入CoordinatorLayout时,阴影就消失了:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/app_bar_large" />
</android.support.design.widget.CoordinatorLayout>
如何让appbar再次显示其阴影?
答案 0 :(得分:13)
这实际上是CollapsingToolbarLayout
的实施细节,如source code所示:
if (Math.abs(verticalOffset) == scrollRange) {
// If we have some pinned children, and we're offset to only show those views,
// we want to be elevate
ViewCompat.setElevation(layout, layout.getTargetElevation());
} else {
// Otherwise, we're inline with the content
ViewCompat.setElevation(layout, 0f);
}
当CollapsingToolbarLayout
显示非固定元素时会删除高程 - 默认情况下,只有固定的子项可见时才会有高程。
答案 1 :(得分:4)
原因在于,请尝试解决此问题:
appBarLayout.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() {
@Override
public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
//some other code here
ViewCompat.setElevation(appBarLayout, The Elevation In Px);
}
});
答案 2 :(得分:3)
解决方案是使用app:elevation=0dp
删除默认标高,并将android:translationZ
设置为所需的标高。
注意:下面的代码使用最新的AndroidX /素材库,如果您使用的是旧的支持库,则可能无法正常工作
<com.google.android.material.appbar.AppBarLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:translationZ="8dp"
app:elevation="0dp">
<!--
* `app:elevation=0dp` disables the default shadow that is automatically added on
scroll ; other values e.g. `6dp` are ignored despite what the official doc says
(see below)
* so instead we're using `android:translationZ` to add a shadow with a custom
elevation
-->
AppBarLayout # setTargetElevation()的文档指出,您可以使用app:elevation
属性设置自定义海拔高度值,但是对于大于0dp
的值,它对我不起作用,因此我m使用translationZ
作为解决方法。
答案 3 :(得分:1)
setTargetElevation()
现在已不推荐用于AppBarLayout。
用于基于布局状态将自定义高程应用于AppBarLayout的新正确实现是使用StateListAnimator。 您可以看到here
使用material-components我在this gist中添加了一个始终显示AppBarLayout高程的示例实现。
您需要做的就是1.在/res/animator
下创建一个自定义状态列表动画器,然后2.像下面这样设置AppBarLayout的StateListAnimator:
appBarLayout.stateListAnimator = AnimatorInflater.loadStateListAnimator(context, R.animator.appbar_always_elevated_state_list_animator)