首页 > 代码库 > Android背景资源优化—1
Android背景资源优化—1
UI优化
按钮背景扁平化处理
定义一个黑色边框,白色背景的图片作为背景
black_border.xml
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" > <corners android:radius="5dp" /> <solid android:color="@android:color/white" /> <stroke android:width="0.5dp" android:color="@android:color/black" /> </shape>
black_border_pressed.xml
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" > <corners android:radius="5dp" /> <solid android:color="@android:color/holo_blue_light" /> <stroke android:width="0.5dp" android:color="@android:color/black" /> </shape>
使用Selector
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@drawable/black_border_pressed" android:state_pressed="true"/> <item android:drawable="@drawable/black_border"/> </selector>
效果如下图:
ListView背景优化:
- android:divider="@null",配置ListView内Item的间隔为@null,即——没有间隔。
- android:background="@null",配置无背景
- android:dividerHeight="@dimen/list_dirver_height",配置分割的高度即——item之间的间隔“距离”。
Android背景资源优化—1
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。