答案 0 :(得分:0)
您可以使用CardView
并设置其高程来创建阴影:
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardElevation="4dp">
<!-- Insert desired views here -->
</android.support.v7.widget.CardView>
请注意CardView
扩展FrameLayout
,因此如果有多个孩子,它会堆叠孩子。在LinearLayout
中添加RelativeLayout
或CardView
,并在其中一个内添加视图(EditText&#39; s),以提高灵活性。