Home
last modified time | relevance | path

Searched refs:launch (Results 1 – 14 of 14) sorted by relevance

/development/samples/browseable/BasicManagedProfile/src/com.example.android.basicmanagedprofile/
DBasicDeviceAdminReceiver.java38 Intent launch = new Intent(context, EnableProfileActivity.class); in onProfileProvisioningComplete() local
39 launch.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in onProfileProvisioningComplete()
40 context.startActivity(launch); in onProfileProvisioningComplete()
/development/samples/browseable/AppRestrictionEnforcer/src/com.example.android.apprestrictionenforcer/
DEnforcerDeviceAdminReceiver.java38 Intent launch = new Intent(context, EnableProfileActivity.class); in onProfileProvisioningComplete() local
39 launch.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in onProfileProvisioningComplete()
40 context.startActivity(launch); in onProfileProvisioningComplete()
/development/samples/browseable/DeviceOwner/src/com.example.android.deviceowner/
DDeviceOwnerReceiver.java43 Intent launch = new Intent(context, MainActivity.class); in onProfileProvisioningComplete() local
44 launch.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in onProfileProvisioningComplete()
45 context.startActivity(launch); in onProfileProvisioningComplete()
/development/samples/IntentPlayground/src/com/example/android/intentplayground/
DTestBase.java83 Intent launch = nextIntents.remove(0) in startActivities()
87 Log.d(TAG, "Launching " + launch.getComponent().toString()); in startActivities()
89 mContext.startActivity(launch); in startActivities()
/development/samples/ShortcutDemo/launcher/src/com/example/android/pm/shortcutlauncherdemo/
DShortcutListFragment.java118 private void launch(ShortcutInfo si) { in launch() method in ShortcutListFragment
220 return R.id.launch; in getLaunchId()
245 launch(si); in onLaunchClicked()
DBaseActivityListFragment.java152 final View v = view.findViewById(R.id.launch); in bindView()
186 case R.id.launch: in onClick()
/development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/ui/
DDetailActivity.java41 public static void launch(Activity activity, String attraction, View heroView) { in launch() method in DetailActivity
DAttractionListFragment.java194 DetailActivity.launch( in onItemClick()
/development/samples/MultiDisplay/src/com/example/android/multidisplay/launcher/
DLauncherActivity.java120 launch(entry.getLaunchIntent()); in onCreate()
133 launch(entry.getLaunchIntent()); in onCreate()
200 void launch(Intent launchIntent) { in launch() method in LauncherActivity
/development/samples/UiAutomator/
DREADME4 All Apps view and select and application to launch. Then we will
/development/samples/ShortcutDemo/publisher/src/com/example/android/pm/shortcutdemo/
DShortcutPublisher.java294 void launch(ShortcutInfo si) { in launch() method in ShortcutPublisher
372 return R.id.launch; in getLaunchId()
397 launch(si); in onLaunchClicked()
/development/samples/browseable/WatchFace/
D_index.jd14 Configurations to "Do not launch Activity" for both the Wear and Application modules. If you are
/development/samples/TicTacToeMain/
DREADME.txt40 - In ADT, just open import both projects and launch the main project.
/development/apps/Development/src/com/android/development/
DShowActivity.java60 mLaunch = (TextView)findViewById(R.id.launch); in onCreate()