blog,blog,blog
blog,blog,blog取消Gridview中button的焦点
Gridview中添加button,onclick方法使得 GridView的setOnItemClickListener方法无效。
解决方法:
设置Button的XML布局文件,也就是自定义的Adapter中getView方法的 convertView的布局文件:
将Button属性分别设置为:
android:focusable="false"
android:focusableInTouchMode="false"
android:clickable="false