Gmail style listview

后端 未结 6 1789
情歌与酒
情歌与酒 2020-12-01 22:56

I want to create a listview that is similar in functionality to the Gmail android app. By that I mean that you can select rows by clicking an image on the left or view an em

6条回答
  •  既然无缘
    2020-12-01 23:04

    You have to set a choiceMode to your ListView.

    myListView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
    myListView().setSelector(android.R.color.BLUE);
    

提交回复
热议问题