首页 > 系统 > Android > 正文

Android中如何取消listview的点击效果

2019-12-12 04:03:46
字体:
来源:转载
供稿:网友

在xml文件里面有listselecter的属性引用

 <ListView     android:layout_width="match_parent"    android:layout_height="wrap_content"android:listSelector="@android:color/transparent"></ListView>

引用transparent之后会让点击效果透明化,昨天整了半天才搞出来,记录一下。

PS:去除或替换listview 默认的点击选中时的颜色

1.去除默认的点击选中时的颜色

(1)设置列表layout的backgroudcolor属性就OK了。

(2)

Android:focusable="false" android:focusableInTouchMode="false"  android:cacheColorHint="#00000000" android:listSelector="#00000000"

2.替换listview 默认的点击选中时的颜色

设置listivew的listSelector属性就可以了。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表