Home
last modified time | relevance | path

Searched refs:activity (Results 1 – 25 of 34) sorted by relevance

12

/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
Dmanifest-expected-completion18.txt1 Code completion in manifest.xml for <activity android:^name=".TestActivity":
2 android:name : Required name of the class implementing the activity, deriving from android.app.Act…
3 android:theme : The overall theme to use for an activity. [reference]
8 android:launchMode : Specify how an activity should be launched. [enum]
9 android:screenOrientation : Specify the orientation an activity should be run in. [enum]
10 android:configChanges : Specify one or more configuration changes that the activity will handle it…
15 android:allowTaskReparenting : Specify that an activity can be moved out of a task it is in to the…
16 android:finishOnTaskLaunch : Specify whether an activity should be finished when its task is broug…
17 android:finishOnCloseSystemDialogs : Specify whether an activity should be finished when a "close …
18 android:clearTaskOnLaunch : Specify whether an activity's task should be cleared when it is re-lau…
[all …]
Dmanifest-expected-navigate9a.txt1 Go To Declaration in manifest.xml for <activity android:name=".Test^Activity":
Dmanifest-expected-complation80.txt1 Code completion in manifest.xml for <activity android:name="^.:
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
Dmessages.properties1 NdkGdbLaunchDelegate_Action_ActivityLaunch=Launching activity
13 NdkGdbLaunchDelegate_Action_WaitingForActivity=Waiting for activity to be launched
14 NdkGdbLaunchDelegate_LaunchError_ActivityLaunchError=Error launching activity
21 NdkGdbLaunchDelegate_LaunchError_NoActivityInManifest=The Manifest defines no activity\!
23 NdkGdbLaunchDelegate_LaunchError_NoLauncherActivity=No launcher activity specified. Aborting launch.
24 …elegate_LaunchError_NoSuchActivity=The specified activity does not exist\! Getting the launcher ac…
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/action/
DShareMockupAction.java43 public static void launch(Activity activity, CharSequence title) { in launch() argument
45 View v = activity.findViewById(R.id.preview); in launch()
56 File f = new File(activity.getExternalCacheDir(), FILE_NAME.format(new Date())); in launch()
65 Toast.makeText(activity, msg, Toast.LENGTH_SHORT).show(); in launch()
76 activity.startActivity(Intent.createChooser(share, title)); in launch()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
DFixLaunchConfig.java96 String activity = config.getAttribute(LaunchConfigDelegate.ATTR_ACTIVITY, in run() local
101 if (activity.startsWith(mOldPackage)) { in run()
103 activity = mNewPackage + activity.substring(mOldPackage.length()); in run()
106 copy.setAttribute(LaunchConfigDelegate.ATTR_ACTIVITY, activity); in run()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/templates/
Dactivity.template1 <activity android:name="ACTIVITY_NAME"
7 </activity>
Djava_file.template7 /** Called when the activity is first created. */
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
DEditors.java56 public static View newEditor(final NotificationStudioActivity activity, in newEditor() argument
58 final View editorView = activity.getLayoutInflater().inflate(R.layout.editable_item, null); in newEditor()
59 ((TextView) editorView.findViewById(R.id.caption)).setText(item.getCaption(activity)); in newEditor()
80 activity.refreshNotification(); in newEditor()
DDateTimeEditor.java90 Activity activity = (Activity) v.getContext(); in bindEditor() local
91 launchDialogOnClick(activity, "datePicker", dateButton, datePickerFragment); in bindEditor()
113 launchDialogOnClick(activity, "timePicker", timeButton, timePickerFragment); in bindEditor()
130 private static void launchDialogOnClick(final Activity activity, in launchDialogOnClick() argument
134 FragmentTransaction ft = activity.getFragmentManager().beginTransaction(); in launchDialogOnClick()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
DTraceOptions.java43 public TraceOptions(String device, String appPackage, String activity, in TraceOptions() argument
48 this.activityToTrace = activity; in TraceOptions()
DCollectTraceAction.java286 private void startActivity(IDevice device, String appPackage, String activity, in startActivity() argument
294 if (!activity.isEmpty()) { in startActivity()
299 activityPath.append(activity); in startActivity()
/sdk/apps/SdkController/
DImplementation.txt22 need an activity to connect to them first.
27 can send data to the emulator) and an optional activity for UI (that displays
41 Note however that due to the asynchronous nature of the bind operation, the activity
46 When the activity is connected to the service, it can then use getServiceBinder()
49 In the other direction, the activity provides a listener for the service to notify
52 The activity can then access the handler:
55 and then the activity wants to provide a listener to get notified by the handler:
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
DNewProjectWizardState.java211 Activity activity = null; in extractFromAndroidManifest() local
219 activity = manifestData.getLauncherActivity(); in extractFromAndroidManifest()
220 if (activity == null) { in extractFromAndroidManifest()
223 activity = activities[0]; in extractFromAndroidManifest()
234 if (activity != null) { in extractFromAndroidManifest()
235 newActivityName = AndroidManifest.extractActivityName(activity.getName(), in extractFromAndroidManifest()
DImportedProject.java102 for (Activity activity : activities) { in getActivityName()
103 mActivityName = activity.getName(); in getActivityName()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
DConfigurationDescription.java101 public String activity; field in ConfigurationDescription
155 description.activity = configuration.getActivity(); in fromConfiguration()
218 String activity = element.getAttribute(ATTR_ACTIVITY); in fromXml() local
219 if (activity.isEmpty()) { in fromXml()
220 activity = null; in fromXml()
300 if (activity != null) { in toXml()
301 element.setAttribute(ATTR_ACTIVITY, activity); in toXml()
354 if (activity != null) { in computePreferredTheme()
355 ActivityAttributes attributes = manifest.getActivityAttributes(activity); in computePreferredTheme()
DConfigurationChooser.java1580 String activity = (String) mActivityCombo.getData(); in onSelectActivity() local
1581 mConfiguration.setActivity(activity); in onSelectActivity()
1583 if (activity == null) { in onSelectActivity()
1590 ActivityAttributes attributes = manifest.getActivityAttributes(activity); in onSelectActivity()
1602 mClient.setActivity(activity); in onSelectActivity()
1949 String activity = element.getAttributeNS(TOOLS_URI, ATTR_CONTEXT); in getPreferredActivity() local
1950 if (activity != null && !activity.isEmpty()) { in getPreferredActivity()
1951 if (activity.startsWith(".") || activity.indexOf('.') == -1) { //$NON-NLS-1$ in getPreferredActivity()
1955 if (activity.startsWith(".")) { //$NON-NLS-1$ in getPreferredActivity()
1956 activity = pkg + activity; in getPreferredActivity()
[all …]
DConfiguration.java427 public void setActivity(String activity) { in setActivity() argument
428 mActivity = activity; in setActivity()
668 String activity = getActivity(); in toPersistentString() local
669 if (activity != null) { in toPersistentString()
670 sb.append(activity); in toPersistentString()
708 String activity = getActivity(); in computePreferredTheme() local
709 if (activity != null) { in computePreferredTheme()
710 ActivityAttributes attributes = manifest.getActivityAttributes(activity); in computePreferredTheme()
DThemeMenuAction.java184 String activity = configuration.getActivity(); in addMenuItems() local
185 if (activity != null) { in addMenuItems()
186 ActivityAttributes attributes = manifest.getActivityAttributes(activity); in addMenuItems()
DNestedConfiguration.java436 public void setActivity(String activity) { in setActivity() argument
437 super.setActivity(activity); in setActivity()
/sdk/eventanalyzer/src/com/android/eventanalyzer/
DEventAnalyzer.java338 for (String activity : activities) { in analyzeData()
339 builder.append(activity).append(DATA_SEPARATOR); in analyzeData()
350 for (String activity : activities) { in analyzeData()
352 ArrayList<Long> list = mLaunchMap.get(activity); in analyzeData()
370 for (String activity : activities) { in analyzeData()
372 builder.append(activity).append(DATA_SEPARATOR); in analyzeData()
375 ArrayList<Long> list = mLaunchMap.get(activity); in analyzeData()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DActivityLaunchAction.java42 public ActivityLaunchAction(String activity, ILaunchController controller) { in ActivityLaunchAction() argument
43 mActivity = activity; in ActivityLaunchAction()
DMainLaunchConfigTab.java427 for (Activity activity : activities) { in loadActivities()
428 if (activity.isExported() && activity.hasAction()) { in loadActivities()
429 mActivities.add(activity); in loadActivities()
430 mActivityCombo.add(activity.getName()); in loadActivities()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
DManifestInfo.java122 public ActivityAttributes(Element activity, String packageName) { in ActivityAttributes() argument
125 String name = activity.getAttributeNS(NS_RESOURCES, ATTRIBUTE_NAME); in ActivityAttributes()
136 String value = activity.getAttributeNS(NS_RESOURCES, ATTRIBUTE_ICON); in ActivityAttributes()
144 value = activity.getAttributeNS(NS_RESOURCES, ATTRIBUTE_LABEL); in ActivityAttributes()
152 value = activity.getAttributeNS(NS_RESOURCES, ATTRIBUTE_PARENT_ACTIVITY_NAME); in ActivityAttributes()
155 NodeList metaData = activity.getElementsByTagName(NODE_METADATA); in ActivityAttributes()
178 value = activity.getAttributeNS(NS_RESOURCES, ATTRIBUTE_THEME); in ActivityAttributes()
186 value = activity.getAttributeNS(NS_RESOURCES, ATTRIBUTE_UI_OPTIONS); in ActivityAttributes()
350 Element activity = (Element) activities.item(i); in sync() local
351 ActivityAttributes info = new ActivityAttributes(activity, mPackage); in sync()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
DActionBarHandler.java83 String activity = mEditor.getConfigurationChooser().getConfiguration().getActivity(); in getActivityAttributes() local
84 return manifest.getActivityAttributes(activity); in getActivityAttributes()

12