我有一个从光标(使用rawQuery)填充的ListView,我需要单击才能从其中获取所选项目的文本。

protected void onListItemClick(ListView l, View v, int position, long id) {
    super.onListItemClick(l, v, position, id);
    Intent mViewChaptersIntent = new Intent(this, ViewWeb.class);
    String s = ((TextView) l.getItemAtPosition(position)).getText().toString(); // Tried this, didn't work.
    mViewChaptersIntent.putExtra("extension", s);
    mViewChaptersIntent.putExtra("itmClicked", String.format("%d", id));
    startActivity(mViewChaptersIntent);
}


但是我不确定正确的方法。我在其他帖子中看到的getItemAtPosition似乎不起作用...

最佳答案

getItemAtPosition()应返回给您位于指定行的Cursor。然后,您需要调用getString()来检索要查找的任何列。

07-24 09:35