发布于 2016-04-07 04:17:44 | 221 次阅读 | 评论: 0 | 来源: 网友投递

这里有新鲜出炉的精品教程,程序狗速度看过来!

Android移动端操作系统

Android是一种基于Linux的自由及开放源代码的操作系统,主要使用于移动设备,如智能手机和平板电脑,由Google公司和开放手机联盟领导及开发。尚未有统一中文名称,中国大陆地区较多人使用“安卓”或“安致”。


下文的效果都是xml布局文件实现的,一张图片都未曾使用,顺便贴出几个布局文件留个大家参考下,感性的朋友可不要错过了哈

先把来源贴上

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



最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务