Android ImageView点击效果
Posted 白衣雨果
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android ImageView点击效果相关的知识,希望对你有一定的参考价值。
ImageView设置点击效果需要注意两点,第一个设置android:clickable="true",第二个 <item android:drawable="@drawable/button_n"/>属性必须放到最后才能生效
<?xml version="1.0" encoding="utf-8"?><!--发现大类列表项--> <ImageView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/ivCategory" android:layout_width="@dimen/x110" android:layout_height="@dimen/x110" android:src="@drawable/bt_icon_pxb" android:clickable="true" android:background="@drawable/bt_discover_category"> </ImageView>
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@drawable/button_d" android:state_checked="true"/> <item android:drawable="@drawable/button_d" android:state_pressed="true"/> <item android:drawable="@drawable/button_n"/> </selector>
以上是关于Android ImageView点击效果的主要内容,如果未能解决你的问题,请参考以下文章
Android踩坑日记:点击变暗效果的ImageView实现原理
Android踩坑日记:点击变暗效果的ImageView实现原理
如何在 Android 中单击 ImageView 时从一个片段移动到另一个片段?
(android:点击换图系列一)通过ImageView点击更换图片