fullscreenwrapper2.FullScreenWrapper2App:
FullScreenWrapper2App implements the "App" incorporating
an eventloop & a layout stack with methods to display &
close layouts and access SL4A FullScreenUI API functions
fullscreenwrapper2.View:
Defines a View and provides pythonic access to its properties &
a mechanism to define events.
dict:
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
(key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
d = {}
for k, v in iterable:
d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list.
fullscreenwrapper2.BaseDict:
implements a dictionary that can be accessed by BaseDict[key] as
well as by BaseDict.key to allow more pythonic access credits:
BaseDict pattern at http://code.activestate.com/recipes/473790/
under PSF license
type:
type(object) -> the object's type type(name, bases, dict) ->
a new type
abc.ABCMeta:
Metaclass for defining Abstract Base Classes (ABCs).