Cardview 中的居中文本 - Android Studio

Centre text inside a Cardview - Android Studio

我目前在回收站内使用卡片视图,尽管我做了一些努力,但文本仍是左对齐的。

这是图书项目布局。

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    app:cardCornerRadius="4dp"
    app:cardElevation="5dp"
    app:cardUseCompatPadding="true"
    app:cardBackgroundColor="@color/white">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        >

        <TextView
            android:id="@+id/bookTitleTextView"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"

            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            android:layout_gravity="center_horizontal"
            />
    </LinearLayout>
</androidx.cardview.widget.CardView>

这是回收器本身。

<?xml version="1.0" encoding="utf-8"?>
<androidx.recyclerview.widget.RecyclerView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/bookRecycler" />

这是当前输出。 enter image description here

如您所见,文本未居中。

我尝试使用布局引力使文本居中,但没有用。 我还尝试在文本视图上使用约束布局,并使用约束使文本居中,但没有任何运气。

android:layout_gravity = "center" 已经尝试过了。

任何关于我忽略的内容的建议都会很棒。 谢谢。

android:gravity="center" 是正确的代码,而不是 android:layout_gravity="center_horizontal"

LinearLayout 添加 android:gravity="center" 就可以了

我看到你的 LinearLayout 只有一个 child 并且没有特殊属性,所以你甚至可以删除整个 LinearLayout - 将 TextView 直接放在 CardView,其中 extends FrameLayout。对于 FrameLayout 内的 childs 居中,您也可以使用 android:gravity="center" for parent and/or android:layout_gravity="center" for child

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:gravity="center"
    app:cardCornerRadius="4dp"
    app:cardElevation="5dp"
    app:cardUseCompatPadding="true"
    app:cardBackgroundColor="@color/white">

    <TextView
        android:layout_gravity="center"
            ... rest of code