Table Of Contents
Abstract View¶
New in version 1.5: This code is still experimental, and its API is subject to change in a future version.
The AbstractView widget has an adapter property for an adapter that mediates to data. The adapter manages an item_view_instances dict property that holds views for each data item, operating as a cache.
- class kivy.uix.abstractview.AbstractView(**kwargs)[source]¶
Bases: kivy.uix.floatlayout.FloatLayout
View using an Adapter as a data provider.
- adapter¶
The adapter can be one of several kinds of adapters. The most common example is the ListAdapter used for managing data items in a list.