mirror of https://github.com/kivy/kivy.git
Made examples list a proper bulleted list.
This commit is contained in:
parent
ca5fc04dd7
commit
7d45acc661
|
@ -9,9 +9,9 @@ SimpleListAdapter
|
|||
This code is still experimental, and its API is subject to change in a
|
||||
future version.
|
||||
|
||||
:class:`~kivy.adapters.simplelistadapter.SimpleListAdapter` is for simple
|
||||
lists, such as for showing a text-only display of strings, or a list of views
|
||||
of some type that have no user interaction.
|
||||
:class:`~kivy.adapters.simplelistadapter.SimpleListAdapter` is for basic lists,
|
||||
such as for showing a text-only display of strings, that have no user
|
||||
interaction.
|
||||
|
||||
'''
|
||||
|
||||
|
@ -24,7 +24,7 @@ from kivy.lang import Builder
|
|||
|
||||
class SimpleListAdapter(Adapter):
|
||||
''':class:`~kivy.adapters.simplelistadapter.SimpleListAdapter` is an
|
||||
adapter around a simple Python list.
|
||||
adapter around a Python list.
|
||||
|
||||
From :class:`~kivy.adapters.adapter.Adapter`,
|
||||
:class:`~kivy.adapters.simplelistadapter.ListAdapter` gets cls, template,
|
||||
|
@ -34,7 +34,7 @@ class SimpleListAdapter(Adapter):
|
|||
data = ListProperty([])
|
||||
'''The data list property contains a list of objects (can be strings) that
|
||||
will be used directly if no args_converter function is provided. If there
|
||||
is an args_converter, the data objects will be passed to it, for
|
||||
is an args_converter, the data objects will be passed to it for
|
||||
instantiation of item view class instances from the data.
|
||||
|
||||
:data:`data` is a :class:`~kivy.properties.ListProperty`,
|
||||
|
|
|
@ -32,15 +32,15 @@ run first, to get a taste of the range of functionality offered. You can tell
|
|||
from the names of the examples that they illustrate the "ramping up" from
|
||||
simple to advanced:
|
||||
|
||||
kivy/examples/widgets/lists/list_simple.py
|
||||
kivy/examples/widgets/lists/list_master_detail.py
|
||||
kivy/examples/widgets/lists/list_two_up.py
|
||||
kivy/examples/widgets/lists/list_kv.py
|
||||
kivy/examples/widgets/lists/list_composite.py
|
||||
kivy/examples/widgets/lists/list_cascade.py
|
||||
kivy/examples/widgets/lists/list_cascade_dict.py
|
||||
kivy/examples/widgets/lists/list_cascade_images.py
|
||||
kivy/examples/widgets/lists/list_ops.py
|
||||
* kivy/examples/widgets/lists/list_simple.py
|
||||
* kivy/examples/widgets/lists/list_master_detail.py
|
||||
* kivy/examples/widgets/lists/list_two_up.py
|
||||
* kivy/examples/widgets/lists/list_kv.py
|
||||
* kivy/examples/widgets/lists/list_composite.py
|
||||
* kivy/examples/widgets/lists/list_cascade.py
|
||||
* kivy/examples/widgets/lists/list_cascade_dict.py
|
||||
* kivy/examples/widgets/lists/list_cascade_images.py
|
||||
* kivy/examples/widgets/lists/list_ops.py
|
||||
|
||||
Many of the examples feature selection, some restricting selection to single
|
||||
selection, where only one item at at time can be selected, and others allowing
|
||||
|
|
Loading…
Reference in New Issue