Setting Multiple Choice
data class SettingMultipleChoice(val title: String, val key: String, val summary: String? = null, val entryTitles: List<String>, val entryValues: List<String>, val defaultEntryIndices: Set<Int>? = null) : Setting
A setting that allows the user to select multiple items from a list of options. Values can be accessed from Settings.getStringSet
Parameters
title
The title of the setting.
key
The unique key of the setting.
summary
The summary of the setting.
entry Titles
The titles of the entries.
entry Values
The values of the entries.
default Entry Indices
The indices of the default entries.