android 给view添加阴影
Posted 你好and程序员
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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添加阴影的主要内容,如果未能解决你的问题,请参考以下文章
Cg入门17:Fragment shader - 片段级光照(添加阴影)