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

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

概述先把来源贴上http://zrgiu.com/blog/2011/01/making-your-android-app-look-better/http://www.dibbus.com/2011/02/gradient-buttons-for-android/

先把来源贴上

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布局文件实现的,一张图片都未曾使用。



顺便贴出几个布局文件给大家看看:
复制代码 代码如下:
<?xml version="1.0" enCoding="utf-8"?>
<selector xmlns:androID="http://schemas.androID.com/apk/res/androID">
<item androID:state_pressed="true" >
<shape>
<solID
androID:color="#449def" />
<stroke
androID:wIDth="1dp"
androID:color="#2f6699" />
<corners
androID:radius="3dp" />
<padding
androID:left="10dp"
androID:top="10dp"
androID:right="10dp"
androID:bottom="10dp" />
</shape>
</item>
<item>
<shape>
<gradIEnt
androID:startcolor="#449def"
androID:endcolor="#2f6699"
androID:angle="270" />
<stroke
androID:wIDth="1dp"
androID:color="#2f6699" />
<corners
androID:radius="4dp" />
<padding
androID:left="10dp"
androID:top="10dp"
androID:right="10dp"
androID:bottom="10dp" />
</shape>
</item>
</selector>

复制代码 代码如下:
<?xml version=”1.0″ enCoding=”UTF-8″?>
<shape xmlns:androID=”http://schemas.androID.com/apk/res/androID”>
<solID androID:color=”#F000″/>
<stroke androID:wIDth=”1px” androID:color=”#BB000000″ />
<padding
androID:left=”10dp”
androID:top=”7dp”
androID:right=”10dp”
androID:bottom=”7dp”
/>
<corners
androID:bottomrighTradius=”5dp”
androID:bottomLefTradius=”5dp”
androID:topLefTradius=”5dp”
androID:topRighTradius=”5dp”
/>
<gradIEnt
androID:angle=”90″
androID:startcolor=”#4747e0″
androID:centercolor=”#5b5bcd”
androID:endcolor=”#6f6fcf”
androID:type=”linear”
/>

</shape>

这里有个工程,开源的

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

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

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

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

总结

以上是内存溢出为你收集整理的Android自定义格式显示Button的布局思路全部内容,希望文章能够帮你解决Android自定义格式显示Button的布局思路所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1141902.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存