我想为 TextInputLayout 添加后缀。一个例子取自material.io
有没有标准的解决方案?
我想为 TextInputLayout 添加后缀。一个例子取自material.io
有没有标准的解决方案?
使用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
.
没有标准解决方案,我使用 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>