Sugar.activity.activityfactory: Difference between revisions

From OLPC
Jump to navigation Jump to search
(New page: === How do I start up another sugar activity programmatically? === The sugar.activity.activityfactory package has a convenience function called create() that you can call to start up a ne...)
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{Sugar Almanac}}

=== How do I start up another sugar activity programmatically? ===
=== How do I start up another sugar activity programmatically? ===



Latest revision as of 03:21, 2 October 2008

  Sugar Almanac

How do I start up another sugar activity programmatically?

The sugar.activity.activityfactory package has a convenience function called create() that you can call to start up a new instance of a particular activity. You simply need to pass the create() function the service name of the activity you desire. The service name can usually be obtained by looking in the activity.info file of the activity in question.

        #Start up a new instance of the Web activity. 
        activityfactory.create('org.laptop.WebActivity')