【发布时间】:2020-06-09 04:38:45
【问题描述】:
【问题讨论】:
标签: android material-design shadow android-textinputlayout
【问题讨论】:
标签: android material-design shadow android-textinputlayout
如何给 com.google.android.material.textfield.TextInputLayout 提供阴影?
您可以将TextInputLayout 包裹在Cardview 中
示例代码
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardCornerRadius="20dp"
app:cardElevation="10dp">
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/textField"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="User name">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</com.google.android.material.textfield.TextInputLayout>
</androidx.cardview.widget.CardView>
【讨论】: