Raghava Dhanya
Raghava Dhanya

Reputation: 967

Trigger multiple selection on long click

I'm building a File manager on android platform.I want my users to be able to select multiple files on long click on a file.How to do it?(In list view) Thanks in advance.

Upvotes: 1

Views: 2921

Answers (1)

ekchang
ekchang

Reputation: 939

Assuming you're using a ListView, I believe you're looking for android:choiceMode="multipleChoiceModal" or setChoiceMode(ListView.CHOICE_MODE_MULTIPLE_MODAL)

Upvotes: 1

Related Questions