如何修复FAB内部活动?

时间:2019-05-28 08:57:45

标签: android xml

我正在尝试向活动添加BottomAppBar,但是出现错误:“ java.lang.RuntimeException:无法启动活动ComponentInfo {com.mathmech.cards/com.mathmech.cards.activity.MainActivity}:android .view.InflateException:二进制XML文件第24行:二进制XML文件第24行:膨胀类com.google.android.material.bottomappbar.BottomAppBar的错误”

我试图遵循网络上的指南,但没有帮助

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
    tools:context=".activity.MainActivity"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ListView
        android:id="@+id/listView"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    </ListView>

    <androidx.coordinatorlayout.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <com.google.android.material.bottomappbar.BottomAppBar
            android:id="@+id/bottom_app_bar"
            app:fabAlignmentMode="center"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:backgroundTint="@color/colorPrimary"
            android:gravity="bottom" />

        <com.google.android.material.floatingactionbutton.FloatingActionButton
            android:id="@+id/fab"
            app:layout_anchor="@id/bottom_app_bar"
            android:layout_width="wrap_content"
            android:src="@drawable/ic_add_black_24dp"
            android:layout_height="wrap_content" />

    </androidx.coordinatorlayout.widget.CoordinatorLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

编辑:添加了styles.xml

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>


</resources>

3 个答案:

答案 0 :(得分:0)

使用Theme.AppCompat.Light.DarkActionBar或其后代代替父主题作为Theme.MaterialComponents

答案 1 :(得分:0)

在您的底部应用栏XML中尝试使用此样式。

style=”@style/Widget.MaterialComponents.BottomAppBar”

答案 2 :(得分:0)

是的,将Theme.AppCompact.Light.DarkActionBar更改为Theme.MaterialComponents将有助于您在布局编辑器中查看xml。

此外,您可以关注这篇文章 Implementing BottomAppBar I: Material Components for Android