Changes
Jump to navigation
Jump to search
Line 3:
Line 3:
− ...+
− ...
+
Development Team/Almanac/sugar.activity.activity (view source)
Revision as of 09:40, 29 May 2008
, 09:40, 29 May 2008no edit summary
<h1>Class: Activity</h1>
<h1>Class: Activity</h1>
<h3> How do I create a new activity that is derived from the base Activity class?</h3>
<h3> How do I create a new activity that is derived from the base Activity class?</h3>
<code>
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)
</code>