要从TextInputLayout中删除水平填充,可以通过以下步骤实现:
implementation 'com.google.android.material:material:1.4.0'
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Enter your name">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</com.google.android.material.textfield.TextInputLayout>
app:boxBackgroundMode
属性为"none"来实现。例如:<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Enter your name"
app:boxBackgroundMode="none">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</com.google.android.material.textfield.TextInputLayout>
这样设置后,TextInputLayout将不再显示水平填充。
关于TextInputLayout的更多信息和用法,你可以参考腾讯云的文档:TextInputLayout使用指南
领取专属 10元无门槛券
手把手带您无忧上云