可以删除 android TextInputLayout 的框和下划线之间的空间
我想创建textInputlayout,而没有框的下划线和边缘之间的差距 可以删除这个差距吗?
图片在这里:
<com.google.android.material.textfield.TextInputLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:id="@+id/tilSearch"
android:hint="@string/search_location"
app:errorEnabled="false"
app:errorTextColor="@color/red"
app:helperTextEnabled="true">
<EditText
android:id="@+id/edtSearch"
android:layout_width="match_parent"
android:layout_height="@dimen/_60dp"
android:importantForAutofill="no"
android:inputType="text"
tools:ignore="LabelFor" />
</com.google.android.material.textfield.TextInputLayout>
I want to create TextInputLayout without a gap between the underline and edge of the box
can remove this gap?
image here:
<com.google.android.material.textfield.TextInputLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:id="@+id/tilSearch"
android:hint="@string/search_location"
app:errorEnabled="false"
app:errorTextColor="@color/red"
app:helperTextEnabled="true">
<EditText
android:id="@+id/edtSearch"
android:layout_width="match_parent"
android:layout_height="@dimen/_60dp"
android:importantForAutofill="no"
android:inputType="text"
tools:ignore="LabelFor" />
</com.google.android.material.textfield.TextInputLayout>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我已经使用scaleX属性
android:scaleX="1.02"
解决了我的问题。可能有更好的方法,但我找不到。attr_android:scaleX
这将是结果:
结果
I've solved my issue using scaleX attribute
android:scaleX="1.02"
. There might be some better way, but I couldn't find any.attr_android:scaleX
This will be the result:
result
您实际上可以使用这些属性删除此下划线,而不是删除差距。删除间隙将在布局中创建双线。因此,删除该差距在EditText中删除下划线。
You can actually remove this underline using these attributes instead removing gap. removing gap will create double line into the layout. so instead remove that gap remove underline in the editText..