Android只有一张按钮图,怎么做出选中与非选中效果?
Posted 呼啸
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android只有一张按钮图,怎么做出选中与非选中效果?相关的知识,希望对你有一定的参考价值。
1.定义一个selector:
在drawaber目录下,新建selector文件:
selector_text_template.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/ic_zf_wz_template" android:state_selected="true" />
<item android:drawable="@drawable/ic_editor_text_template_no_select" android:state_selected="false" />
</selector>
而
ic_editor_text_template_no_select.xml:
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:antialias="true"
android:src="@drawable/ic_zf_wz_template"
android:tint="@color/com_color_white_40">
</bitmap>
ic_zf_wz_template是图片。
选中和非选中
选中:原图:
以上是关于Android只有一张按钮图,怎么做出选中与非选中效果?的主要内容,如果未能解决你的问题,请参考以下文章