为什么 textView 不显示?

Why is textView not showing?

我创建了 cardView 并实现了 onClickListener,我还创建了一个 fragment,卡片导航到其中有一个 textView。但是,当我导航到 fargement 时,它 returns 这个空白屏幕;

请问这是什么原因??

这是 .kt 文件中的 onClickListener 代码;


        // ssJkRowling
        val ssJoanneRowling : CardView = view.findViewById(R.id.ss_jk_rowling)
        ssJoanneRowling.setOnClickListener {
            val ssJoanneRowlingFragment = SsJoanneRowlingFragment()
            val transaction: FragmentTransaction? = fragmentManager?.beginTransaction()
            transaction?.replace(R.id.fl_fragment, ssJoanneRowlingFragment)
            transaction?.commit()
        }

这是 .xml 文件中的 cardView;


                <androidx.cardview.widget.CardView
                    android:id="@+id/ss_jk_rowling"
                    android:layout_width="250dp"
                    android:layout_height="320dp"
                    app:cardElevation="6dp"
                    app:cardCornerRadius="12dp"
                    android:layout_margin="30dp"
                    android:layout_rowWeight="1"
                    android:layout_columnWeight="1">

                    <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:orientation="vertical">

                        <ImageView
                            android:layout_width="match_parent"
                            android:layout_height="260dp"
                            android:src="@drawable/ss_jk_rowling"
                            android:scaleType="centerCrop"
                            android:contentDescription="@string/stories_imageview"/>

                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="55dp"
                            android:padding="15dp"
                            android:text="@string/Joanne_Rowling"
                            android:textSize="18sp" />

                    </LinearLayout>

                </androidx.cardview.widget.CardView>

这里是 cardView 导航到的片段中的 textView 代码;

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.Constraints 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=".SsJoanneRowlingFragment">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

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

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:padding="15dp"
                android:text="@string/Joanne_Rowling_story" />


        </LinearLayout>

    </ScrollView>

</androidx.constraintlayout.widget.Constraints>

你提前帮了大忙了。

您可以从目标的 xml 布局中删除 Constraints 并使用 ScrollView 作为父级,它应该有效:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
    android:layout_width="match_parent">

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

        <TextView
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:padding="15dp"
            android:text="@string/Joanne_Rowling_story" />


    </LinearLayout>

</ScrollView>