TextInputLayout 显示带光标的浮动可绘制对象

TextInputLayout showing Floating Drawable with cursor

提问人:Nishank Bansal 提问时间:10/13/2023 最后编辑:Malik BilalNishank Bansal 更新时间:10/14/2023 访问量:34

问:

当我使用带有两个浮动操作的 textinputlayout 时,不知道它在哪里导致,请查看此图像以获取光标下方的浮动enter image description here

 <?xml version="1.0" encoding="utf-8"?>
 <androidx.constraintlayout.widget.ConstraintLayout    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:background="@color/bgColor"
    android:layout_height="match_parent">
    <com.google.android.material.textfield.TextInputLayout
        android:id="@+id/til_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:textColorHint="@color/black"
        app:boxBackgroundMode="none"
        app:expandedHintEnabled="false"
        app:hintEnabled="false"
        android:layout_marginTop="16dp"
        android:padding="0dp"


        >
        <com.google.android.material.textfield.TextInputEditText
            android:id="@+id/et_title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="0dp"
            android:hint="@string/addtitlehint"
            android:inputType="textCapSentences"
            android:imeOptions="actionNext"
            android:textSize="@dimen/_20sp"

            android:textColorHighlight="@color/highLightColor"
            android:fontFamily="@font/roboto_bold"
            android:textColor="@color/black"
            >
        </com.google.android.material.textfield.TextInputEditText>
    </com.google.android.material.textfield.TextInputLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

这张图片显示,如果我选择任何文本,就无法弄清楚这种情况发生在哪里。

此外,如果我选择一个特定的文本,它会像这样显示。 检查问题图像中有两个浮动可绘制对象enter image description here

XML Kotlin Android布局

评论

0赞 Rahul Agrawal 10/13/2023
发布您的活动/片段代码

答: 暂无答案