HomeSort by relevance Sort by last modified time
    Searched full:activity (Results 426 - 450 of 3538) sorted by null

<<11121314151617181920>>

  /packages/apps/Music/
AndroidManifest.xml 38 <activity android:name="com.android.music.MusicBrowserActivity"
48 </activity>
62 can go to a playlist from this activity, so if they later return
66 <activity android:name="com.android.music.MediaPlaybackActivity"
88 </activity>
90 <activity android:name="AudioPreview" android:theme="@android:style/Theme.Dialog"
123 </activity>
125 <activity android:name="com.android.music.ArtistAlbumBrowserActivity" android:exported="false" >
131 </activity>
132 <activity android:name="com.android.music.AlbumBrowserActivity" android:exported="false"
    [all...]
  /packages/apps/QuickSearchBox/tests/partial/src/com/android/quicksearchbox/tests/partial/
PartialSuggestionLauncher.java 19 import android.app.Activity;
22 public class PartialSuggestionLauncher extends Activity {
  /packages/apps/Settings/tests/src/com/android/settings/tests/
Manufacturer.java 19 import android.app.Activity;
22 public class Manufacturer extends Activity {
Operator.java 19 import android.app.Activity;
22 public class Operator extends Activity {
  /packages/apps/SpeechRecorder/
AndroidManifest.xml 10 <activity android:name="SpeechRecorderActivity"
16 </activity>
  /packages/experimental/CameraPreviewTest/
AndroidManifest.xml 39 <!-- An Activity in the application - this is something the user
42 activity. -->
43 <activity android:name="VideoChatTestActivity">
46 activity. This allows the user to get to your activity
51 activity, without any associated data. -->
54 <!-- This places this activity into the main app list. -->
58 </activity>
  /packages/providers/ApplicationsProvider/
AndroidManifest.xml 12 <activity android:name="ApplicationLauncher"
24 </activity>
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
manifest.xml 10 <activity android:name=".TestActivity"
16 </activity>
  /sdk/testapps/basicLib/
AndroidManifest.xml 7 <activity android:name="Main"
13 </activity>
  /sdk/testapps/basicLibWithJar/
AndroidManifest.xml 7 <activity android:name="Main" android:label="@string/basicLibWithJar_name">
12 </activity>
  /sdk/testapps/basicProject/
AndroidManifest.xml 7 <activity android:name="Main"
13 </activity>
  /sdk/testapps/basicProjectWithAidl/
AndroidManifest.xml 6 <activity android:name="com.android.tests.basicprojectwithaidlwithaidl.Main"
12 </activity>
  /sdk/testapps/basicProjectWithJar/
AndroidManifest.xml 7 <activity android:name="Main"
13 </activity>
  /sdk/testapps/basicProjectWithJava/
AndroidManifest.xml 8 <activity android:label="@string/app_name" android:name="Main">
13 </activity>
  /sdk/testapps/basicProjectWithJavaFolder/
AndroidManifest.xml 8 <activity android:label="@string/app_name" android:name="Main">
13 </activity>
  /system/media/wilhelm/tests/native-media/
AndroidManifest.xml 8 <activity android:name=".NativeMedia"
14 </activity>
  /frameworks/base/core/java/android/widget/
ActivityChooserModel.java 66 * For example, choosing a share activity can be implemented by a single backing
87 * // Set an intent to choose a an activity for.
127 // This cannot be done by a simple comparator since an Activity weight
128 // is computed from history. Note that Activity implements Comparable.
134 * Listener for choosing an activity.
139 * Called when an activity has been chosen. The client can decide whether
140 * an activity can be chosen and if so the caller of
149 * @param intent The intent for launching the chosen activity.
178 * Attribute for the activity.
180 private static final String ATTRIBUTE_ACTIVITY = "activity";
771 public final ComponentName activity; field in class:ActivityChooserModel.HistoricalRecord
936 ActivityResolveInfo activity = activities.get(i); local
947 ActivityResolveInfo activity = packageNameToActivityMap.get(packageName); local
1008 String activity = parser.getAttributeValue(null, ATTRIBUTE_ACTIVITY); local
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/5/changes/
android.app.Activity.html 10 android.app.Activity
74 Class android.app.<A HREF="../../../../reference/android/app/Activity.html" target="_top"><font size="+2"><code>Activity</code></font></A>
86 <A NAME="android.app.Activity.onAttachedToWindow_added()"></A>
87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#onAttachedToWindow()" target="_top"><code>onAttachedToWindow</code></A>()</nobr>
93 <A NAME="android.app.Activity.onBackPressed_added()"></A>
94 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#onBackPressed()" target="_top"><code>onBackPressed</code></A>()</nobr>
100 <A NAME="android.app.Activity.onDetachedFromWindow_added()"></A>
101 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Activity.html#onDetachedFromWindow()" target="_top"><code>onDetachedFromWindow</code></A>()</nobr>
107 <A NAME="android.app.Activity.onKeyLongPress_added(int, android.view.KeyEvent)"></A
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
CtsVerifierActivity.java 19 import android.app.Activity;
27 /** {@link Activity} that displays an introduction to the verifier. */
28 public class CtsVerifierActivity extends Activity {
30 /** Called when the activity is first created. */
  /cts/tests/src/android/theme/cts/
ThemeSelectorActivity.java 21 import android.app.Activity;
31 * This activity exists solely for debugging purposes. It allows the manual
34 public class ThemeSelectorActivity extends Activity {
38 * Called with the activity is first created.
  /development/apps/SdkSetup/src/com/android/sdksetup/
DefaultActivity.java 19 import android.app.Activity;
34 public class DefaultActivity extends Activity {
60 // remove this activity from the package manager.
65 // terminate the activity.
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyActivityEvent.java 27 * monkey activity event
45 * @return Intent for the new activity
72 System.err.println("** Failed talking with activity manager!");
76 System.out.println("** Permissions error starting activity "
  /development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/
ActionBarHelperHoneycomb.java 19 import android.app.Activity;
36 protected ActionBarHelperHoneycomb(Activity activity) {
37 super(activity);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TranslucentGLSurfaceViewActivity.java 19 import android.app.Activity;
26 * Wrapper activity demonstrating the use of {@link GLSurfaceView} to
29 public class TranslucentGLSurfaceViewActivity extends Activity {
35 // Activity
  /development/samples/ContactManager/
AndroidManifest.xml 27 <activity android:name=".ContactManager" android:label="@string/app_name">
32 </activity>
33 <activity android:name="ContactAdder" android:label="@string/addContactTitle">
34 </activity>

Completed in 345 milliseconds

<<11121314151617181920>>