图片选择器
Posted iFat的笔记本
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了图片选择器相关的知识,希望对你有一定的参考价值。
在选中和未选中的过程中,切换展示图片
http://wear.techbrood.com/guide/practices/screens_support.html
AppResource--->Resource Types----->Drawable---->StateList
selector放置的路径res/drawable/button.xml:
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true" android:drawable="@drawable/button_pressed" /> <!-- 选中按钮图片 --> <item android:state_focused="true" android:drawable="@drawable/button_focused" /> <!-- 按钮获取焦点图片 --> <item android:state_hovered="true" android:drawable="@drawable/button_focused" /> <!-- 平板电视,悬浮选中某个应用图片 --> <item android:drawable="@drawable/button_normal" /> <!-- 默认图片--> </selector>
<Button android:layout_height="wrap_content" android:layout_width="wrap_content" android:background="@drawable/button" />
以上是关于图片选择器的主要内容,如果未能解决你的问题,请参考以下文章