Table Of Contents
ListAdapter¶
New in version 1.5.
Warning
This code is still experimental, and its API is subject to change in a future version.
A ListAdapter is an adapter around a python list.
Selection operations are a main concern for the class.
From an Adapter, a ListAdapter gets cls, template, and args_converter properties and adds others that control selection behaviour:
- selection, a list of selected items.
- selection_mode, ‘single’, ‘multiple’, ‘none’
- allow_empty_selection, a boolean – If False, a selection is forced. If True, and only user or programmatic action will change selection, it can be empty.
If you wish to have a bare-bones list adapter, without selection, use a SimpleListAdapter.
A DictAdapter is a subclass of a ListAdapter. They both dispatch the on_selection_change event.
Events:
- on_selection_change: (view, view list )
Fired when selection changes
Changed in version 1.6.0: Added data = ListProperty([]), which was proably inadvertently deleted at some point. This means that whenever data changes an update will fire, instead of having to reset the data object (Adapter has data defined as an ObjectProperty, so we need to reset it here to ListProperty). See also DictAdapter and its set of data = DictProperty().
- class kivy.adapters.listadapter.ListAdapter(**kwargs)[source]¶
Bases: kivy.adapters.adapter.Adapter, kivy.event.EventDispatcher
A base class for adapters interfacing with lists, dictionaries or other collection type data, adding selection, view creation and management functonality.
- allow_empty_selection¶
The allow_empty_selection may be used for cascading selection between several list views, or between a list view and an observing view. Such automatic maintenance of the selection is important for all but simple list displays. Set allow_empty_selection to False and the selection is auto-initialized and always maintained, so any observing views may likewise be updated to stay in sync.
allow_empty_selection is a BooleanProperty and defaults to True.
- cached_views¶
View instances for data items are instantiated and managed by the adapter. Here we maintain a dictionary containing the view instances keyed to the indices in the data.
This dictionary works as a cache. get_view() only asks for a view from the adapter if one is not already stored for the requested index.
cached_views is a DictProperty and defaults to {}.
- create_view(index)[source]¶
This method is more complicated than the one in kivy.adapters.adapter.Adapter and kivy.adapters.simplelistadapter.SimpleListAdapter, because here we create bindings for the data item and its children back to self.handle_selection(), and do other selection-related tasks to keep item views in sync with the data.
- cut_to_sel(*args)[source]¶
Same as trim_to_sel, but intervening list items within the selected range are also cut, leaving only list items that are selected.
- data¶
The data list property is redefined here, overriding its definition as an ObjectProperty in the Adapter class. We bind to data so that any changes will trigger updates. See also how the DictAdapter redefines data as a DictProperty.
data is a ListProperty and defaults to [].
- on_selection_change(*args)[source]¶
on_selection_change() is the default handler for the on_selection_change event.
- propagate_selection_to_data¶
Normally, data items are not selected/deselected because the data items might not have an is_selected boolean property – only the item view for a given data item is selected/deselected as part of the maintained selection list. However, if the data items do have an is_selected property, or if they mix in SelectableDataItem, the selection machinery can propagate selection to data items. This can be useful for storing selection state in a local database or backend database for maintaining state in game play or other similar scenarios. It is a convenience function.
To propagate selection or not?
Consider a shopping list application for shopping for fruits at the market. The app allows for the selection of fruits to buy for each day of the week, presenting seven lists: one for each day of the week. Each list is loaded with all the available fruits, but the selection for each is a subset. There is only one set of fruit data shared between the lists, so it would not make sense to propagate selection to the data because selection in any of the seven lists would clash and mix with that of the others.
However, consider a game that uses the same fruits data for selecting fruits available for fruit-tossing. A given round of play could have a full fruits list, with fruits available for tossing shown selected. If the game is saved and rerun, the full fruits list, with selection marked on each item, would be reloaded correctly if selection is always propagated to the data. You could accomplish the same functionality by writing code to operate on list selection, but having selection stored in the data ListProperty might prove convenient in some cases.
propagate_selection_to_data is a BooleanProperty and defaults to False.
- select_list(view_list, extend=True)[source]¶
The select call is made for the items in the provided view_list.
Arguments:
view_list: the list of item views to become the new selection, or to add to the existing selection
extend: boolean for whether or not to extend the existing list
- selection¶
The selection list property is the container for selected items.
selection is a ListProperty and defaults to [].
- selection_limit¶
When the selection_mode is multiple and the selection_limit is non-negative, this number will limit the number of selected items. It can be set to 1, which is equivalent to single selection. If selection_limit is not set, the default value is -1, meaning that no limit will be enforced.
selection_limit is a NumericProperty and defaults to -1 (no limit).
- selection_mode¶
Selection modes:
- none, use the list as a simple list (no select action). This option is here so that selection can be turned off, momentarily or permanently, for an existing list adapter. A ListAdapter is not meant to be used as a primary no-selection list adapter. Use a SimpleListAdapter for that.
- single, multi-touch/click ignored. Single item selection only.
- multiple, multi-touch / incremental addition to selection allowed; may be limited to a count by selection_limit
selection_mode is an OptionProperty and defaults to ‘single’.
- trim_left_of_sel(*args)[source]¶
Cut list items with indices in sorted_keys that are less than the index of the first selected item if there is a selection.