Setting List
data class SettingList(val title: String, val key: String, val summary: String? = null, val entryTitles: List<String>, val entryValues: List<String>, val defaultEntryIndex: Int? = null) : Setting
A setting that allows the user to select a single string from a list of options. Value can be accessed from Settings.getString
Parameters
title
The title of the setting.
key
The 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 Index
The index of the default entry.