更改大小后如何使文本在纯文本中可见?

How to make text visible in Plain Text after changing its size?

我在 Android Studio 中更改纯文本的大小时遇到​​问题。 这是 window 的默认尺寸,看起来很完美。

<EditText
        android:id="@+id/editText3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="96dp"
        android:layout_marginLeft="96dp"
        android:layout_marginTop="588dp"
        android:ems="10"
        android:hint="E-mail"
        android:inputType="textPersonName"
        android:textColorHint="#F8F8F8"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

但是在更改这些值后 android:layout_width="196dp" & android:layout_height="32dp" 提示顶部被减半。喜欢这个 screenshot.。请帮忙。谢谢

当您设置 android:layout_height="32dp" 时,它对于标准文本大小来说太小了。 因此,转换为 android:layout_height="wrapcontent" 是理想的解决方案。

如果你真的必须坚持 32dp 的高度,你应该减小文本大小,以便它适合给定的 32dp 高度。

那样android:textSize="10dp"

我不知道为什么,但在添加背景后 android:background="#000000" 它看起来很完美。所以这是解决方案