突出显示listview的孩子

时间:2011-10-25 17:10:47

标签: android listview focus

我能突出列表视图的孩子吗? 我尝试了很多方法,但它不起作用。

list.getchildat(position).requestFocus;

list.setSelection(位置);

和list.setselected(“true”)。

有任何建议吗?

1 个答案:

答案 0 :(得分:0)

这可能是你的答案:

@Override    protected void onListItemClick(ListView l, View v, int position, long id) {        // Make the newly clicked item the currently selected one.        getListView().setItemChecked(position, true);    }

去看看api demes:http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/List17.html