highlighting the selected item in the listview in android

前端 未结 4 471
小鲜肉
小鲜肉 2020-11-30 03:21

I am having 1 list view contactslist. I wrote the code for highlighting the selected item in the ListView. It is working. When I click on 1 item it

4条回答
  •  [愿得一人]
    2020-11-30 03:44

    Try this at onListItemClick

    view.getFocusables(POSITION);
    view.setSelected(true);
    

    It highlights the selection.

提交回复
热议问题