标签:android des style blog http color
elevation是构成控件阴影的基本属性。通过设置较高的Z值可以接受更大的阴影,阴影只能投射到Z=0的平面上。
控件的Z值,是由两个值组成的:高度和位移。高度是固有的属性,位移可以用于创建动画。
Z = elevation + translationZ
改变elevation的方法:
View.setElevation
新的 ViewPropertyAnimator.z 和
ViewPropertyAnimator.translationZ方法可以让你很简单的
为控件创建一些动画。
控件背景图的边缘,会默认作为这个控件的阴影。Outlines 会根据控件的形状来生成阴影,并生成触摸反馈效果。
用于控件的背景图,也会用于生成阴影图。
下面是一个例子:
<TextView
android:id="@+id/myview"
...
android:elevation="2dp"
android:background="@drawable/myrect" />
背景图:
<!-- res/drawable/myrect.xml -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#42000000" />
<corners android:radius="5dp" />
</shape>
可以在代码中通过View.setOutline方法设置阴影图片
通过 View.setClipToOutline方法可以可以裁剪控件的轮廓。只支持矩形,圆形和椭圆。可以通过
Outline.canClip方法来检测是否支持裁剪。
通过 View.setClipToOutline裁剪的图片设置为控件的阴影图片。
Material design之Views and Shadows,布布扣,bubuko.com
Material design之Views and Shadows
标签:android des style blog http color
原文地址:http://www.cnblogs.com/qinghuaideren/p/3842468.html