How to send selected messages using checkbox to a particular no?

后端 未结 2 548
日久生厌
日久生厌 2021-01-26 17:39

first i\'m fetching all messages to my app to be store in listview then I\'m selecting messages from listview using checkboxes and wish to send these se

2条回答
  •  心在旅途
    2021-01-26 18:18

    You can always use:

    yourListView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
    

    To choose multiple items, remember that its interface depend on you creating it.

    
    
    
    
    
    
    

提交回复
热议问题