本文介绍了AppBarLayout的海拔高度不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我尝试为AppBarLayout设置一个特定的高程值时,阴影会完全消失。
When I try to set a specific value to elevation for AppBarLayout, the shadow disappears completely.
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:elevation="4dp">
<!-- Toolbar -->
<android.support.v7.widget.Toolbar...
<!-- Other Layouts -->
</android.support.design.widget.AppBarLayout>
这是错误还是预期的行为?
Is this a bug or the expected behaviour?
我正在使用设计库的26.0.0版本。
I'm using the version 26.0.0 of the design library.
推荐答案
设置属性动画
创建执行时间为1ms的动画: /animator/appbar_elevation.xml
Creating an animation with 1ms of execution time:/animator/appbar_elevation.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<objectAnimator
android:duration="1"
android:propertyName="elevation"
android:valueTo="2dp"
android:valueType="floatType" />
</item>
</selector>
将其设置为AppBarLayout
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:stateListAnimator="@animator/appbar_elevation">
</android.support.design.widget.AppBarLayout>
它可以在Java代码中使用。
appBarLayout.setStateListAnimator(AnimatorInflater.loadStateListAnimator(getContext(), R.animator.appbar_elevation));
这篇关于AppBarLayout的海拔高度不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!