16

我想为 TextInputLayout 添加后缀。一个例子取自material.io

例子

有没有标准的解决方案?

4

2 回答 2

31

使用TextInputLayout材料组件库中提供的内容,您可以使用 attrs:

  • app:prefixText: 前缀文本
  • app:suffixText: 后缀文本

就像是:

<com.google.android.material.textfield.TextInputLayout
    android:hint="Test"
    app:prefixText="@string/..."
    app:prefixTextColor="@color/secondaryDarkColor"
    app:suffixText="@string/..."
    app:suffixTextColor="@color/primaryLightColor"
    ...>

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

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

例子:

在此处输入图像描述

注意:这需要最低版本1.2.0-alpha01.

于 2019-10-22T08:13:10.893 回答
6

没有标准解决方案,我使用 textView 对 textInputLayout 和 editText 填充进行了操作。

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="4dp"
            android:gravity="bottom">

            <android.support.design.widget.TextInputLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:hint="Hint"
                app:errorEnabled="true">

                <android.support.v7.widget.AppCompatEditText
                    style="@style/RegistrationEditText"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:paddingRight="80dp" />
            </android.support.design.widget.TextInputLayout>

            <android.support.v7.widget.AppCompatTextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_centerInParent="true"
                android:paddingBottom="12dp"
                android:paddingRight="8dp"
                android:text="rightLabel" />
        </RelativeLayout>
于 2017-04-10T13:01:36.160 回答