如何获取BottomAppBar的海拔。我认为默认情况下它的标高为8dp,但我没有任何标高。
这是我的代码。

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <com.google.android.material.bottomappbar.BottomAppBar
        android:id="@+id/bottom_bar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:layout_gravity="bottom"
        style="@style/Widget.MaterialComponents.BottomAppBar" />

    <com.google.android.material.floatingactionbutton.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_anchor="@id/bottom_bar"
        android:src="@android:drawable/ic_input_add"
        android:tint="@color/colorPrimary"/>

</androidx.coordinatorlayout.widget.CoordinatorLayout>

最佳答案

问题的一部分是照明系统在Android上的工作方式。顶部有一个光源,中间有一个光源。这意味着阴影通常在“视图”顶部不可见。

我们有一个错误可以伪造BottomAppBar的阴影,但是它不像BottomNavigation那样琐碎,因为晶圆厂可以移动并改变形状,因此阴影也应改变。

关于android - 无法在BottomAppBar中获得高程,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51008277/

10-10 16:03