gpt4 book ai didi

android - 奇怪的 ListView 项目选择器外观(手指离开屏幕时未移除按下状态)

转载 作者:太空宇宙 更新时间:2023-11-03 13:33:30 25 4
gpt4 key购买 nike

我有如下所示的 ListView 项目

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="60dp"
android:orientation="horizontal"
android:descendantFocusability="blocksDescendants"
>

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>

<CheckBox
android:id="@+id/checkBox1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/music_list_item_checkbox_bg"
/>
</LinearLayout>

music_list_item_checkbox_bg.xml 是一个选择器,会根据不同的状态显示不同的 drawable。

<selector xmlns:android="http://schemas.android.com/apk/res/android" >

<item
android:state_pressed="false"
android:state_selected="true"
android:drawable="@drawable/btn_checkbox_check_untapped" />

<item android:state_selected="true"
android:state_pressed="true"
android:drawable="@drawable/btn_checkbox_check_tapped" />

<item android:state_selected="false"
android:state_pressed="false"
android:drawable="@drawable/btn_checkbox_uncheck_untapped" />

<item android:state_selected="false"
android:state_pressed="true"
android:drawable="@drawable/btn_checkbox_uncheck_tapped" />

</selector>

当我按下 ListView 中的项目并将触摸屏留在项目内时,根据不同状态的可绘制对象是正确的。

问题: 但是如果我按下项目并将手指水平移出项目(触摸点的 X 在项目的顶部和底部之间) , 然后离开屏幕,checkbox的drawable会一直保持按下状态。 (如果触摸点的X在项目的顶部和底部之外,则状态为正确)。

我尝试将 android:duplicateParentState="true" 添加到复选框以获得与父级相同的状态,但它不起作用。

我很困惑,有人有什么想法吗?

已编辑

I tried implements onTouch and onIntercept in the item before, but only can receive action down, if i return super.onTouch(MotionEvent event). Only return true, then the sequence event will received, but the onItemClick of listview could't worked. I try to read the onTouch code snippet in the AbsListview to figure out how to resolve the problem, i found sometimes the press status of child(item) will not to clear to false by calling child.setPressed(false) which depending on the different touch mode.

我真的很想要一个解决方案!!!

最佳答案

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
android:drawable="@drawable/btn_checkbox_check_tapped" />
<item android:state_selected="true"
android:drawable="@drawable/btn_checkbox_check_tapped" />
<item android:drawable="@drawable/btn_checkbox_uncheck_untapped" />
</selector>

尝试使用这些选择器作为背景

关于android - 奇怪的 ListView 项目选择器外观(手指离开屏幕时未移除按下状态),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10246502/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com