Difference between revisions of "Development Team/Almanac/sugar.activity.activity"
< Development Team | Almanac
Jump to navigation
Jump to search
Line 5: | Line 5: | ||
The following code creates a simple activity called ToolbarExample: | The following code creates a simple activity called ToolbarExample: | ||
− | from sugar.activity import activity | + | |
+ | {{{from sugar.activity import activity | ||
class ToolbarExample(activity.Activity): | class ToolbarExample(activity.Activity): | ||
def __init__(self, handle): | def __init__(self, handle): | ||
activity.Activity.__init__(self, handle) | activity.Activity.__init__(self, handle) | ||
+ | }}} |
Revision as of 09:49, 29 May 2008
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)
}}}