2

我有一个列表 ListView。为它写了一个处理程序。当您触摸菜单项 (ACTION_DOWN) 时,我会突出显示它。当您释放项目 (ACTION_UP) - 返回原始颜色。问题是,如果您触摸并滚动 - 然后该项目会突出显示。或者,如果您在其他项目上触摸并移动手指。

public boolean onTouch(View v, MotionEvent event) {
if (event.getAction()==MotionEvent.ACTION_DOWN) {
    holder.tv_name_exercise.setTextColor(Color.parseColor("#fe9503"));
    holder.tv_description_exercise.setTextColor(Color.parseColor("#ffffff"));
    holder.row.setBackgroundResource(R.drawable.list_item_bg_active);
    }
if (event.getAction()==MotionEvent.ACTION_UP) {
    holder.tv_name_exercise.setTextColor(Color.parseColor("#000000"));
    holder.tv_description_exercise.setTextColor(Color.parseColor("#666667"));
    holder.row.setBackgroundResource(R.drawable.list_item_bg);
    }}
4

1 回答 1

2

不要使用触摸处理程序,而是将您的文本视图设置为使用颜色状态列表作为文本颜色,并将您的背景资源设置为可绘制的选择器。该框架将根据您的视图的当前状态(例如按下)处理选择正确的资源。

res/color/exercise_color.xml:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" android:color="#fe9503" />
    <item android:color="#000000"/>
</selector>

res/drawable/row_bg.xml:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true"
          android:drawable="@drawable/list_item_bg_active" />
    <item android:color="@drawable/list_item_bg"/>
</selector>
于 2014-07-13T01:01:27.193 回答