我使用自定义数组适配器实现了列表视图。现在我想获取列表视图的选定项目。我知道有使用onclick监听器的解决方案。但是,我想使用ListView(AdapterView)类的getSelectedItem()方法。该方法始终返回null。其他getSelected *方法也不起作用。
// onCreate
mList = (ListView) findViewById(R.id.listView);
// set in Broadcast Receiver (inner class)
mList.setAdapter(new ListAdapter(getApplicationContext(),
R.layout.list_view_item, R.id.textView,
itemList));
// onButtonClick
Log.i(TAG, "Selected: " + mList.getSelectedItem());
OnButtonClick是一个单独按钮的回调。如果我点击它,所选项目应该在logcat中打印,但每次返回null。任何人都可以帮助我吗?
XML:
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:background="@android:color/background_light"
android:drawSelectorOnTop="false"
android:listSelector="@android:color/holo_blue_light" >
</ListView>
<Button
android:id="@+id/buttonContinue"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/listView"
android:layout_centerHorizontal="true"
android:onClick="onButtonClickContinue"
android:text="Continue" />
</RelativeLayout>
如果我选择一个项目颜色会改变。
答案 0 :(得分:2)
实施你的课程
public class xyz extends Activity implements OnItemSelectedListener
然后给该活动的onitemclicklistener
mList.setOnItemSelectedListener(this);
现在实现onItemselected方法
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position,
long id) {
// u will get the position and selected item here
}
答案 1 :(得分:2)
我检查了getSelectedItem源代码
public Object getSelectedItem() {
T adapter = getAdapter();
int selection = getSelectedItemPosition();
if (adapter != null && adapter.getCount() > 0 && selection >= 0) {
return adapter.getItem(selection);
} else {
return null;
}
}
也许您应该检查getItem
ListAdapter
方法
答案 2 :(得分:2)
我发现OnItemSelected方法在触摸设备上从不/很少被调用。 如果您使用模拟器交叉导航以及具有混合或非触摸控制的特殊设备,则会激活它。只有在滚动列表时才会调用它,但如果单击它则不会调用它。
这就是为什么你应该在具有触控功能的普通平板电脑/智能手机上使用OnItemClickListener。