Sugar.activity.activity

From OLPC
Revision as of 14:48, 29 May 2008 by 155.212.201.242 (talk)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The sugar.activity.activity package includes several important classes that are needed to run a basic activity.

Class: Activity

How do I create a new activity that is derived from the base Activity class?

The following code creates a simple activity called ToolbarExample: from sugar.activity import activity class ToolbarExample(activity.Activity):

   def __init__(self, handle):
       activity.Activity.__init__(self, handle)