繁体   English   中英

Android ListView-获取所选项目

[英]Android ListView - get the selected item

我已经使用自定义数组适配器实现了列表视图。 现在,我要获取列表视图的选定项。 我知道有一些使用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>

如果我选择一个项目,颜色会改变。

实施您的课程

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
}

我检查了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;
    }
}

也许您应该在ListAdapter检查getItem方法

我发现从不/很少在触摸设备上调用OnItemSelected方法。 如果您使用仿真器交叉导航,并且在具有混合或非触摸控制的特殊设备上触发,则会触发该事件。 仅当您滚动列表时才调用它,而不是单击它时才调用它。

这就是为什么您应该在具有触摸控制功能的普通平板电脑/智能手机上使用OnItemClickListener的原因。

暂无
暂无

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

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