FileDocCategorySizeDatePackage
StkLauncherActivity.javaAPI DocAndroid 1.5 API1231Wed May 06 22:42:48 BST 2009com.android.stk

StkLauncherActivity

public class StkLauncherActivity extends android.app.Activity
Launcher class. Serve as the app's MAIN activity, send an intent to the StkAppService and finish.

Fields Summary
Constructors Summary
Methods Summary
protected voidonCreate(android.os.Bundle savedInstanceState)

        super.onCreate(savedInstanceState);

        Bundle args = new Bundle();
        args.putInt(StkAppService.OPCODE, StkAppService.OP_LAUNCH_APP);
        startService(new Intent(this, StkAppService.class).putExtras(args));

        finish();