如何在 CardView 上方设置按钮? (在 XML 上工作,但现在当 App 启动时)

How to set button above CardView ? (Working on the XML but now when App launches)

我无法将按钮放在 CardView 上方。
当我为按钮设置translationZ时,它显示在XML上面,但是当我启动应用程序时,按钮仍然没有显示在上面。

这是我的 XML:

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

    <androidx.cardview.widget.CardView
        android:id="@+id/cardView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintBottom_toTopOf="parent"
        app:layout_constraintEnd_toStartOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:cardCornerRadius="10dp"
        app:cardElevation="12dp">

        <ImageView
            android:id="@+id/imageView"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scaleType="centerCrop"
            android:src="@drawable/imageDrawable"/>

    </androidx.cardview.widget.CardView>

    <Button
        android:id="@+id/button"
        android:layout_width="38dp"
        android:layout_height="40dp"
        android:elevation="16dp"
        android:translationZ="16dp"
        android:background="@drawable/ic_play"
        app:layout_constraintBottom_toBottomOf="@+id/cardView"
        app:layout_constraintEnd_toEndOf="@+id/cardView"
        app:layout_constraintStart_toStartOf="@+id/cardView"
        app:layout_constraintTop_toTopOf="@+id/cardView" />
</androidx.constraintlayout.widget.ConstraintLayout>

这是一个被问过多次的问题,但我看不出有任何原因无法正常工作。

它只是 ImageView 上方的一个播放按钮。

我还更改了按钮在 XML 中的位置,将其放在最后一个位置,没有任何变化。

考虑在 CardView 中添加 Buttonlayout_gravity="center"CardView 扩展 FrameLayout