Home
last modified time | relevance | path

Searched refs:customIntent (Results 1 – 3 of 3) sorted by relevance

/development/samples/IntentPlayground/src/com/example/android/intentplayground/
DLauncherActivity.java60 public void launchActivity(Intent customIntent) { in launchActivity() argument
61 customIntent.putExtra(TestBase.EXPECTED_HIERARCHY, mTester.computeExpected(customIntent)); in launchActivity()
62 startActivity(customIntent); in launchActivity()
DBaseActivity.java95 Intent customIntent = new Intent(); in launchActivity() local
101 if (checkbox.isChecked()) customIntent.addFlags(flagVal); in launchActivity()
102 else customIntent.removeFlags(flagVal); in launchActivity()
104 customIntent.setComponent(mActivityToLaunch); in launchActivity()
105 startActivity(customIntent); in launchActivity()
/development/samples/browseable/AppRestrictions/src/com.example.android.apprestrictions/
DGetRestrictionsReceiver.java153 final Intent customIntent = new Intent(); in createRestrictions() local
154 customIntent.setClass(context, CustomRestrictionsActivity.class); in createRestrictions()
155 extras.putParcelable(Intent.EXTRA_RESTRICTIONS_INTENT, customIntent); in createRestrictions()