/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 …]
|
/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/templates/activities/MasterDetailFlow/root/src/app_package/ |
D | ContentListActivity.java.ftl | 10 * An activity representing a list of ${objectKindPlural}. This activity 12 * handsets, the activity presents a list of items, which when touched, 14 * item details. On tablets, the activity presents the list of items and 17 * The activity makes heavy use of fragments. The list of items is a 21 * This activity also implements the required 29 * Whether or not the activity is in two-pane mode, i.e. running on a tablet 47 // activity should be in two-pane mode. 66 // activity, the Up button is shown. Use NavUtils to allow users 86 // In two-pane mode, show the detail view in this activity by 98 // In single-pane mode, simply start the detail activity
|
D | ContentDetailActivity.java.ftl | 10 * An activity representing a single ${objectKind} detail screen. This 11 * activity is only used on handset devices. On tablet-size devices, 15 * This activity is mostly just a 'shell' activity containing nothing 29 // saved from previous configurations of this activity 38 // Create the detail fragment and add it to the activity 56 // activity, the Up button is shown. Use NavUtils to allow users
|
D | ContentListFragment.java.ftl | 54 * nothing. Used only when this fragment is not attached to an activity. 93 public void onAttach(Activity activity) { 94 super.onAttach(activity); 97 if (!(activity instanceof Callbacks)) { 101 mCallbacks = (Callbacks) activity; 116 // Notify the active callbacks interface (the activity, if the
|
/sdk/templates/activities/MasterDetailFlow/root/ |
D | AndroidManifest.xml.ftl | 4 <activity android:name=".${CollectionName}Activity" 21 </activity> 23 <activity android:name=".${DetailName}Activity" 28 </activity>
|
/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>
|
/sdk/templates/activities/FullscreenActivity/root/src/app_package/util/ |
D | SystemUiHider.java.ftl | 31 * of the activity layout. This is most useful when there are no controls at 32 * the top of the activity layout. 57 * The activity associated with this UI hider object. 86 * @param activity The activity whose window's system UI should be 94 public static SystemUiHider getInstance(Activity activity, View anchorView, int flags) { 96 return new SystemUiHiderHoneycomb(activity, anchorView, flags); 98 return new SystemUiHiderBase(activity, anchorView, flags); 102 protected SystemUiHider(Activity activity, View anchorView, int flags) { 103 mActivity = activity;
|
/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()
|
/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/templates/activities/SettingsActivity/root/ |
D | AndroidManifest.xml.ftl | 4 <activity android:name=".${activityClass}" 15 </activity>
|
/sdk/templates/activities/LoginActivity/root/ |
D | AndroidManifest.xml.ftl | 4 <activity android:name=".${activityClass}" 16 </activity>
|
/sdk/templates/other/BlankFragment/root/src/app_package/ |
D | BlankFragment.java.ftl | 97 public void onAttach(Activity activity) { 98 super.onAttach(activity); 100 mListener = (OnFragmentInteractionListener) activity; 102 throw new ClassCastException(activity.toString() 116 * to the activity and potentially other fragments contained in that 117 * activity.
|
/sdk/templates/other/ListFragment/root/src/app_package/ |
D | ListFragment.java.ftl | 128 public void onAttach(Activity activity) { 129 super.onAttach(activity); 131 mListener = (OnFragmentInteractionListener) activity; 133 throw new ClassCastException(activity.toString() 149 // Notify the active callbacks interface (the activity, if the 173 // Notify the active callbacks interface (the activity, if the 183 * to the activity and potentially other fragments contained in that 184 * activity.
|
/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()
|
/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()
|
/sdk/templates/activities/BlankActivity/root/ |
D | AndroidManifest.xml.ftl | 4 <activity android:name=".${activityClass}" 21 </activity>
|
/sdk/templates/activities/FullscreenActivity/root/ |
D | AndroidManifest.xml.ftl | 4 <activity android:name=".${activityClass}" 23 </activity>
|
/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/templates/activities/FullscreenActivity/root/src/app_package/ |
D | FullscreenActivity.java.ftl | 18 * An example full-screen activity that shows and hides the system UI (i.e. 48 * The instance of the {@link SystemUiHider} for this activity. 65 // this activity. 128 // Trigger the initial hide() shortly after the activity has been 151 // activity, the Up button is shown. Use NavUtils to allow users 169 * while interacting with activity UI.
|
/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()
|