码迷,mamicode.com
首页 > 其他好文 > 详细

GridView/ListView item被点击后的效果

时间:2015-04-08 13:11:21      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:

方法一,在控件被初始化的时候设置

?
1
2
gridView.setSelector(new ColorDrawable(Color.TRANSPARENT));
listView.setSelector(new ColorDrawable(Color.TRANSPARENT));

方法二,在布局文件中设置listSelector属性


?
1
2
3
4
5
6
7
8
9
10
11
12
13
<GridView
        android:listSelector="@android:color/transparent"
        android:numColumns="auto_fit"
        android:columnWidth="50dp"
        android:stretchMode="spacingWidth"
        android:layout_weight="1.0"
        android:layout_height="0dip"
        android:layout_width="match_parent"/>
 
<ListView
        android:listSelector="@android:color/transparent"
        android:layout_height="match_parent"
        android:layout_width="match_parent"/>
当然也可以定制化自己想要的效果。 

GridView/ListView item被点击后的效果

标签:

原文地址:http://blog.csdn.net/luo446718254/article/details/44938907

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!