android 给view添加阴影

1、方法一:

使用 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"
android:layout_gravity="center"
app:cardBackgroundColor="#ffffff"
app:cardCornerRadius="4dp"
app:cardElevation="3dp"> 2、方法二:
使用属性 android:elevation="3dp"
上一篇:Android View动画效果—透明效果,旋转效果(二)


下一篇:从零开始学 Web 之 DOM(五)元素的创建