本文整理汇总了Python中sugar3.bundle.activitybundle.ActivityBundle.get_show_launcher方法的典型用法代码示例。如果您正苦于以下问题:Python ActivityBundle.get_show_launcher方法的具体用法?Python ActivityBundle.get_show_launcher怎么用?Python ActivityBundle.get_show_launcher使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sugar3.bundle.activitybundle.ActivityBundle
的用法示例。
在下文中一共展示了ActivityBundle.get_show_launcher方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _main
# 需要导入模块: from sugar3.bundle.activitybundle import ActivityBundle [as 别名]
# 或者: from sugar3.bundle.activitybundle.ActivityBundle import get_show_launcher [as 别名]
def _main():
"""Launch this activity from the command line."""
ab = ActivityBundle(os.path.dirname(__file__) or '.')
ai = ActivityInfo(name=ab.get_name(),
icon=None,
bundle_id=ab.get_bundle_id(),
version=ab.get_activity_version(),
path=ab.get_path(),
show_launcher=ab.get_show_launcher(),
command=ab.get_command(),
favorite=True,
installation_time=ab.get_installation_time(),
position_x=0, position_y=0)
env = activityfactory.get_environment(ai)
cmd_args = activityfactory.get_command(ai)
os.execvpe(cmd_args[0], cmd_args, env)