Tag: linearlayoutroundcorners dropshadow

如何在android的linearlayout周围显示阴影?

我怎样才能显示我的线性布局的阴影。 我想要在线性布局周围有阴影的白色圆形背景。 到目前为止,我已经做到了。 请帮帮我。 提前致谢。 <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margin="10dp" android:background="@xml/rounded_rect_shape" android:orientation="vertical" android:padding="10dp"> <– My buttons, textviews, Imageviews go here –> </LinearLayout> 和xml目录下的rounded_rect_shape.xml <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" > <solid android:color="#ffffff" /> <corners android:bottomLeftRadius="3dp" android:bottomRightRadius="3dp" android:topLeftRadius="3dp" android:topRightRadius="3dp" /> </shape>