欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

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

程序员文章站 2024-02-22 23:31:52
在xml文件里面有listselecter的属性引用

在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属性就可以了。