我正在开发一个具有ListView的应用程序。在此ListView中,当我触摸一个项目时,此项目的背景颜色会发生变化,以显示该项目已被选中。
然后,布局也有一个EditText:
<ListView
android:layout_width="match_parent"
android:layout_height="0dp"
android:id="@+id/pratosListView"
android:layout_marginBottom="@dimen/activity_vertical_margin"
android:layout_weight="0.8"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="number"
android:id="@+id/quantidadeEditText"
android:layout_marginRight="@dimen/activity_horizontal_margin"
style="@style/EditText"/>
当我触摸EditText时,未选择在ListView中选择的项目,换句话说,背景颜色将恢复为原始颜色。我不希望发生这种情况。
这是我的选择器(list_item_selector.xml):
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true" android:drawable="@drawable/item_list_selected"/>
<item android:state_pressed="true" android:drawable="@drawable/item_list_pressed"/>
<item android:state_focused="true" android:drawable="@drawable/item_list_focused"/>
<item android:drawable="@drawable/item_list_normal"/>
</selector>
这里我设置了项目的背景(item_lista_pedidos.xml):
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/activity_all_magim"
android:orientation="horizontal"
android:weightSum="5"
android:baselineAligned="false"
android:background="@drawable/list_item_selector">
.....
</LinearLayout>
以下是点击监听器的实现:
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
// salva a posicao do item selecionado
lastPositionSelected = position;
// salva o objeto relativo ao item selecionado
servicoSelected = servicos.get(position);
view.setSelected(true);
}
当我在EditText中触摸时,有人有一些想法可以避免取消选择项目吗?
答案 0 :(得分:1)
正如前面提到的here,如果您只想在EditText之外检测外部触摸,可以在包含视图中检测触摸事件,然后,假设您有EditText视图:
Rect editTextRect = new Rect();
myEditText.getHitRect(editTextRect);
if (!editTextRect.contains((int)event.getX(), (int)event.getY())) {
//touch was outside edittext
}
或者您向EditText和容器添加一个触摸侦听器,并在其中一个EditText中返回false,这样它就会被拦截而不会转发给父级。因此,您在父级侦听器中检测到的所有触摸都不属于EditText。