gpt4 book ai didi

android - TextInputEditText 提示被框轮廓覆盖

转载 作者:行者123 更新时间:2023-12-02 12:44:42 24 4
gpt4 key购买 nike

我正在使用 TextInputEditText s 作为文本输入,当我选择它们时,提示会向上移动,但会被框的轮廓覆盖。有谁知道为什么会这样?
照片 :
enter image description here
代码 :

<com.google.android.material.textfield.TextInputLayout
android:id="@+id/title_layout"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColorHint="@color/grey"
android:theme="@style/OutlinedEditText"
app:boxStrokeColor="@color/blue"
app:hintTextColor="@color/blue"
app:layout_constraintTop_toBottomOf="@id/cover_art">

<com.google.android.material.textfield.TextInputEditText
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginStart="24dp"
android:layout_marginEnd="24dp"
android:hint="@string/title"
android:inputType="textCapWords" />

</com.google.android.material.textfield.TextInputLayout>

最佳答案

删除 TextInputEditText

android:layout_marginStart="24dp"
android:layout_marginEnd="24dp"
通过这种方式,您可以在主容器( TextInputLayout )和 EditText 之间添加一个边距。
enter image description here
利用:
    <com.google.android.material.textfield.TextInputLayout
android:id="@+id/title_layout"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:layout_marginStart="24dp"
android:layout_marginEnd="24dp"
android:hint="...."
...
>

<com.google.android.material.textfield.TextInputEditText
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="50dp"
android:inputType="textCapWords" />

</com.google.android.material.textfield.TextInputLayout>
enter image description here

关于android - TextInputEditText 提示被框轮廓覆盖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63366543/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com