Android自定义格式显示Button的布局思路

先把来源贴上

http://zrgiu.com/blog/2011/01/making-your-android-app-look-better/

http://www.dibbus.com/2011/02/gradient-buttons-for-android/

http://www.dibbus.com/2011/08/even-more-gradient-buttons-for-android/

然后再让大家看看效果,这些都是xml布局文件实现的,一张图片都未曾使用。

Android自定义格式显示Button的布局思路_第1张图片

Android自定义格式显示Button的布局思路_第2张图片

Android自定义格式显示Button的布局思路_第3张图片

顺便贴出几个布局文件给大家看看:

复制代码 代码如下:





android:color="#449def" />
android:width="1dp"
android:color="#2f6699" />
android:radius="3dp" />
android:left="10dp"
android:top="10dp"
android:right="10dp"
android:bottom="10dp" />




android:startColor="#449def"
android:endColor="#2f6699"
android:angle="270" />
android:width="1dp"
android:color="#2f6699" />
android:radius="4dp" />
android:left="10dp"
android:top="10dp"
android:right="10dp"
android:bottom="10dp" />




复制代码 代码如下:





android:left=”10dp”
android:top=”7dp”
android:right=”10dp”
android:bottom=”7dp”
/>
android:bottomRightRadius=”5dp”
android:bottomLeftRadius=”5dp”
android:topLeftRadius=”5dp”
android:topRightRadius=”5dp”
/>
android:angle=”90″
android:startColor=”#4747e0″
android:centerColor=”#5b5bcd”
android:endColor=”#6f6fcf”
android:type=”linear”
/>



这里有个工程,开源的

http://code.google.com/p/android-gradients-sample/downloads/list

顺便把这两个网页给收了,说不定以后能够提供灵感或者参考

http://www.webdesignshock.com/css-button

//www.jb51.net/css/23418.html

你可能感兴趣的:(Android自定义格式显示Button的布局思路)