我能突出列表视图的孩子吗? 我尝试了很多方法,但它不起作用。
list.getchildat(position).requestFocus;
和
list.setSelection(位置);
和list.setselected(“true”)。
有任何建议吗?
答案 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