简体   繁体   English

Android ListView-获取所选项目

[英]Android ListView - get the selected item

I have implemented a list view using a custom array adapter. 我已经使用自定义数组适配器实现了列表视图。 Now I want to get the selected item of the list view. 现在,我要获取列表视图的选定项。 I know that there are solutions using onclick listeners. 我知道有一些使用onclick侦听器的解决方案。 However I would like to use the getSelectedItem() method of the ListView (AdapterView) class. 但是,我想使用ListView(AdapterView)类的getSelectedItem()方法。 The method always returns null. 该方法始终返回null。 The other getSelected* methods also do not work. 其他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 is a callback of a seperate button. OnButtonClick是一个单独按钮的回调。 If I click on it the selected item should be printed in logcat but it returns everytime null. 如果单击它,则所选项目应以logcat打印,但每次返回null。 Can anyone help me? 谁能帮我?

XML: 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>

If I select an item the color changes. 如果我选择一个项目,颜色会改变。

Implement you class 实施您的课程

public class xyz extends Activity implements OnItemSelectedListener

then give onitemclicklistener of that activity 然后为该活动提供onitemclicklistener

mList.setOnItemSelectedListener(this);

And now implement the onItemselected method 现在实现onItemselected方法

@Override
public void onItemSelected(AdapterView<?> parent, View view, int position,
        long id) {
    // u will get the position and selected item here
}

I check the getSelectedItem source code 我检查了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;
    }
}

maybe you should check your the getItem method in the ListAdapter 也许您应该在ListAdapter检查getItem方法

I figured out that the OnItemSelected method is never/rarely called on touch devices. 我发现从不/很少在触摸设备上调用OnItemSelected方法。 It fires up if you use the emulator cross-navigation and on special devices with hybrid or non-touch control. 如果您使用仿真器交叉导航,并且在具有混合或非触摸控制的特殊设备上触发,则会触发该事件。 It is only called if you scroll through the list but not if you click on it. 仅当您滚动列表时才调用它,而不是单击它时才调用它。

Thats why you should use the OnItemClickListener on a general tablet/smartphone with touch control. 这就是为什么您应该在具有触摸控制功能的普通平板电脑/智能手机上使用OnItemClickListener的原因。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM