[b]先看看效果:[/b]
[img]http://dl2.iteye.com/upload/attachment/0102/3624/638ab99b-1ad4-324d-9358-d0fcfb257a68.png[/img]
附:
[b]只是圆角效果:[/b]
[b]如何使用?[/b]
我们知道,android 提供的这些特效处理类,最终都将被解析为一个 Drawable 对象(即:图片),
那么我们就可以像使用图片一样(把它们放到 draw 目录下,引用 资源的id)使用这些特效文件了。
比如将这些特效作为 一个 LinearLayout 的背景,或一个 按钮的背景
更过内容:[url=http://nodebook.info/book/view?bid=5354725719980e913e9be3f1]http://nodebook.info/book/view?bid=5354725719980e913e9be3f1[/url]
-
[img]http://dl2.iteye.com/upload/attachment/0102/3624/638ab99b-1ad4-324d-9358-d0fcfb257a68.png[/img]
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Bottom 2dp Shadow -->
<item>
<shape android:shape="rectangle">
<solid android:color="#d8d8d8" />
<corners android:radius="7dp" />
</shape>
</item>
<!-- White Top color -->
<item android:bottom="3px">
<shape android:shape="rectangle">
<solid android:color="#FFFFFF" />
<corners android:radius="7dp" />
</shape>
</item>
</layer-list>
附:
[b]只是圆角效果:[/b]
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<!-- 填充色 -->
<solid android:color="#FFFFFF" />
<!-- 设置按钮的四个角为弧形 -->
<!-- android:radius 弧形的半径 -->
<corners android:topLeftRadius="0dp"
android:topRightRadius="0dp"
android:bottomRightRadius="7dp"
android:bottomLeftRadius="7dp"
/>
<!-- padding:Button里面的文字与Button边界的间隔 -->
<padding
android:bottom="10dp"
android:left="10dp"
android:right="10dp"
android:top="10dp" />
</shape>
<!--
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ffffffff"/>
<stroke android:width="3dp"
android:color="#ff000000"
/>
<padding android:left="1dp"
android:top="1dp"
android:right="1dp"
android:bottom="1dp"
/>
<corners android:bottomRightRadius="7dp"
android:bottomLeftRadius="7dp"
android:topLeftRadius="7dp"
android:topRightRadius="7dp"/>
</shape>
-->
[b]如何使用?[/b]
我们知道,android 提供的这些特效处理类,最终都将被解析为一个 Drawable 对象(即:图片),
那么我们就可以像使用图片一样(把它们放到 draw 目录下,引用 资源的id)使用这些特效文件了。
比如将这些特效作为 一个 LinearLayout 的背景,或一个 按钮的背景
更过内容:[url=http://nodebook.info/book/view?bid=5354725719980e913e9be3f1]http://nodebook.info/book/view?bid=5354725719980e913e9be3f1[/url]
-