FileDocCategorySizeDatePackage
FrameworkTestApplication.javaAPI DocAndroid 1.5 API660Wed May 06 22:42:02 BST 2009com.android.frameworktest

FrameworkTestApplication

public class FrameworkTestApplication extends android.app.LauncherActivity
Holds little snippets of functionality used as code under test for instrumentation tests of framework code.

Fields Summary
Constructors Summary
Methods Summary
protected android.content.IntentgetTargetIntent()

        // TODO: partition into categories by label like the sample code app
        Intent targetIntent = new Intent(Intent.ACTION_MAIN, null);
        targetIntent.addCategory(Intent.CATEGORY_FRAMEWORK_INSTRUMENTATION_TEST);
        targetIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        return targetIntent;