我想获取ListView的SelectedItem索引。我通过点击项目来选择项目。 OnItemClick事件工作正常,但getSelectedItemPosition()返回-1。
我做错了什么?
的xml:
<ListView
android:id="@+id/lvAddEdtList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:choiceMode="singleChoice"
android:drawSelectorOnTop="true"
android:focusable="true"
android:focusableInTouchMode="true"
android:listSelector="?android:attr/listChoiceIndicatorSingle" />
活动:
lvAddEdtDel.setAdapter(namesList);
lvAddEdtDel.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
lvAddEdtDel.setSelection(position);
view.setSelected(true);
}
});
public void onClick(View v) {
if(lvAddEdtDel.getSelectedItemPosition() < 0 )
{
Toast.makeText(getApplicationContext(), getString(R.string.ItemNotSelected),Toast.LENGTH_LONG).show();
}
});
抱歉我的英文
答案 0 :(得分:4)
我自己解决了这个问题。 适配器的布局选择:android.R.layout.simple_list_item_1;
在我的情况下,有必要选择:android.R.layout.simple_list_item_single_choice;
在触摸模式下必须使用getCheckedItemPosition