CoordinatorLayout中的Material FloatingActionButton没有显示在设计预览窗口中

时间:2019-05-16 07:00:25

标签: material-design floating-action-button androidx

我在androidx库中的CoordinatorLayout中使用了材质FloatingActionButton,但是我的设计窗口未显示任何内容。这是我尝试过的代码:

<?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"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <!-- Main content -->

    <com.google.android.material.floatingactionbutton.FloatingActionButton
        android:id="@+id/floating_action_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|end"
        android:layout_margin="16dp"
        app:srcCompat="@drawable/ic_add_white_24dp"/>

</androidx.coordinatorlayout.widget.CoordinatorLayout>

0 个答案:

没有答案