/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
D | manifest-expected-completion18.txt | 1 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 …]
|
D | manifest-expected-navigate9a.txt | 1 Go To Declaration in manifest.xml for <activity android:name=".Test^Activity":
|
D | manifest-expected-complation80.txt | 1 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/ |
D | messages.properties | 1 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/ |
D | ShareMockupAction.java | 43 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/ |
D | FixLaunchConfig.java | 96 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/ |
D | activity.template | 1 <activity android:name="ACTIVITY_NAME" 7 </activity>
|
D | java_file.template | 7 /** Called when the activity is first created. */
|
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/ |
D | Editors.java | 56 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()
|
D | DateTimeEditor.java | 90 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/ |
D | TraceOptions.java | 43 public TraceOptions(String device, String appPackage, String activity, in TraceOptions() argument 48 this.activityToTrace = activity; in TraceOptions()
|
D | CollectTraceAction.java | 288 private void startActivity(IDevice device, String appPackage, String activity, in startActivity() argument 296 if (!activity.isEmpty()) { in startActivity() 301 activityPath.append(activity); in startActivity()
|
/sdk/apps/SdkController/ |
D | Implementation.txt | 22 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/ |
D | NewProjectWizardState.java | 211 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()
|
D | ImportedProject.java | 102 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/ |
D | ConfigurationDescription.java | 101 public String activity; field in ConfigurationDescription 155 description.activity = configuration.getActivity(); in fromConfiguration() 215 String activity = element.getAttribute(ATTR_ACTIVITY); in fromXml() local 216 if (activity.isEmpty()) { in fromXml() 217 activity = null; in fromXml() 297 if (activity != null) { in toXml() 298 element.setAttribute(ATTR_ACTIVITY, activity); in toXml() 351 if (activity != null) { in computePreferredTheme() 353 preferred = activityThemes.get(activity); in computePreferredTheme()
|
D | ConfigurationChooser.java | 1580 String activity = (String) mActivityCombo.getData(); in onSelectActivity() local 1581 mConfiguration.setActivity(activity); in onSelectActivity() 1583 if (activity == null) { in onSelectActivity() 1590 String preferred = activityThemes.get(activity); in onSelectActivity() 1599 mClient.setActivity(activity); in onSelectActivity() 1945 String activity = element.getAttributeNS(TOOLS_URI, ATTR_CONTEXT); in getPreferredActivity() local 1946 if (activity != null && !activity.isEmpty()) { in getPreferredActivity() 1947 if (activity.startsWith(".") || activity.indexOf('.') == -1) { //$NON-NLS-1$ in getPreferredActivity() 1951 if (activity.startsWith(".")) { //$NON-NLS-1$ in getPreferredActivity() 1952 activity = pkg + activity; in getPreferredActivity() [all …]
|
D | Configuration.java | 424 public void setActivity(String activity) { in setActivity() argument 425 mActivity = activity; in setActivity() 642 String activity = getActivity(); in toPersistentString() local 643 if (activity != null) { in toPersistentString() 644 sb.append(activity); in toPersistentString() 682 String activity = getActivity(); in computePreferredTheme() local 683 if (activity != null) { in computePreferredTheme() 685 preferred = activityThemes.get(activity); in computePreferredTheme()
|
D | ThemeMenuAction.java | 185 String activity = configuration.getActivity(); in addMenuItems() local 186 if (activity != null) { in addMenuItems() 187 String theme = activityThemes.get(activity); in addMenuItems()
|
D | NestedConfiguration.java | 436 public void setActivity(String activity) { in setActivity() argument 437 super.setActivity(activity); in setActivity()
|
/sdk/eventanalyzer/src/com/android/eventanalyzer/ |
D | EventAnalyzer.java | 338 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/ |
D | ActivityLaunchAction.java | 42 public ActivityLaunchAction(String activity, ILaunchController controller) { in ActivityLaunchAction() argument 43 mActivity = activity; in ActivityLaunchAction()
|
D | MainLaunchConfigTab.java | 427 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/scripts/ |
D | _mk_icons.sh | 39 icon A green activity
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/ |
D | ManifestInfo.java | 224 Element activity = (Element) activities.item(i); in sync() local 225 String theme = activity.getAttributeNS(NS_RESOURCES, ATTRIBUTE_THEME); in sync() 227 String name = activity.getAttributeNS(NS_RESOURCES, ATTRIBUTE_NAME); in sync()
|