android在 5.0中添加了阴影效果主要通过CardView来实现,在低版本中通过android.support.v7.widget.CardView来实现。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/包名"
android:id="@+id/rlListItemGame"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:paddingTop="2dp" >
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardBackgroundColor="@android:color/white"
app:cardCornerRadius="3dp"
app:cardElevation="2dp"
app:cardUseCompatPadding="true" >
可以看到上面的代码中多了三个app:属性,cardCornerRadius设置圆角大小,app:cardElevation设置阴影大小,最需要注意的属性是cardUseCompatPadding,它在5.0以下的系统中默认是true,但在5.0系统中默认为false,如果不设置 app:cardUseCompatPadding=”true”的话会造成在5.0系统的Android手机上不能看到阴影效果。
最后一定要记得加上xmlns:app="http://schemas.android.com/apk/res/包名"
这一句。
顺便附上CardView的兼容lib(eclipse可用)http://download.csdn.net/detail/zhong1113/8707351
原文:http://blog.csdn.net/zhong1113/article/details/45770623