标签: android android-edittext textinputlayout
请告诉我,如何在widget.TextInputLayout中添加图片? 在这里... enter image description here
答案 0 :(得分:1)
没有办法在TextInputLayout内置。该空间是为字符计数器保留的,如下图所示:
TextInputLayout
此计数器可以使用app:counterEnabled和app:counterMaxLength属性启用,但这些是文字,而不是图片。
app:counterEnabled
app:counterMaxLength
您可以使用TextInputLayout包裹FrameLayout,并使用ImageView添加android:layout_gravity="bottom|end"。
FrameLayout
ImageView
android:layout_gravity="bottom|end"