HomeSort by relevance Sort by last modified time
    Searched refs:Activity (Results 251 - 275 of 1444) sorted by null

<<11121314151617181920>>

  /packages/apps/QuickSearchBox/tests/naughty/src/com/android/quicksearchbox/tests/naughty/
HangingSuggestionLauncher.java 18 import android.app.Activity;
23 public class HangingSuggestionLauncher extends Activity {
  /packages/apps/QuickSearchBox/tests/slow/src/com/android/quicksearchbox/tests/slow/
SlowSuggestionLauncher.java 19 import android.app.Activity;
24 public class SlowSuggestionLauncher extends Activity {
  /packages/apps/QuickSearchBox/tests/spammy/src/com/android/quicksearchbox/tests/spammy/
SpammySuggestionLauncher.java 19 import android.app.Activity;
24 public class SpammySuggestionLauncher extends Activity {
  /packages/apps/Settings/tests/src/com/android/settings/tests/
SettingsLaunchPerformance.java 19 import android.app.Activity;
51 finish(Activity.RESULT_OK, mResults);
  /packages/apps/Stk/src/com/android/stk/
StkLauncherActivity.java 19 import android.app.Activity;
24 * Launcher class. Serve as the app's MAIN activity, send an intent to the
28 public class StkLauncherActivity extends Activity {
  /packages/apps/VoiceDialer/tests/src/com/android/voicedialer/
VoiceDialerLaunchPerformance.java 19 import android.app.Activity;
43 finish(Activity.RESULT_OK, mResults);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
DetailsNormal.java 21 import android.app.Activity;
24 public class DetailsNormal extends Activity {
  /packages/wallpapers/Basic/src/com/android/wallpaper/fall/
Fall.java 19 import android.app.Activity;
22 public class Fall extends Activity {
  /packages/wallpapers/Basic/src/com/android/wallpaper/galaxy/
Galaxy.java 20 import android.app.Activity;
23 public class Galaxy extends Activity {
  /packages/wallpapers/Basic/src/com/android/wallpaper/grass/
Grass.java 20 import android.app.Activity;
23 public class Grass extends Activity {
  /packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
HoloSpiralTestActivity.java 19 import android.app.Activity;
22 public class HoloSpiralTestActivity extends Activity {
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
SpinnerVisibilitySetter.java 19 import android.app.Activity;
28 * Activity. It filters out short-lived appearances of the progress spinner by only
46 static final WeakHashMap<Activity, SpinnerVisibilitySetter> sInstanceMap =
47 new WeakHashMap<Activity, SpinnerVisibilitySetter>();
50 private Activity mActivity;
78 * Gets the <code>SpinnerVisibilitySetter</code> for the given <code>activity</code>.
82 public static SpinnerVisibilitySetter getInstance(Activity activity) {
84 SpinnerVisibilitySetter setter = sInstanceMap.get(activity);
86 setter = new SpinnerVisibilitySetter(activity);
    [all...]
  /frameworks/base/core/java/android/app/
Application.java 53 void onActivityCreated(Activity activity, Bundle savedInstanceState);
54 void onActivityStarted(Activity activity);
55 void onActivityResumed(Activity activity);
56 void onActivityPaused(Activity activity);
57 void onActivityStopped(Activity activity);
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
Instrumentation_ActivityResultTest.java 19 import android.app.Activity;
51 ActivityResult result = new ActivityResult(Activity.RESULT_OK, intent);
52 assertEquals(Activity.RESULT_OK, result.getResultCode());
55 result = new ActivityResult(Activity.RESULT_CANCELED, intent);
56 assertEquals(Activity.RESULT_CANCELED, result.getResultCode());
  /packages/apps/Contacts/src/com/android/contacts/
ContactsSearchManager.java 21 import android.app.Activity;
39 * Starts the contact list activity in the search mode.
41 public static void startSearch(Activity context, String initialQuery) {
45 public static void startSearchForResult(Activity context, String initialQuery,
51 public static void startSearch(Activity context, String initialQuery,
57 Activity context, String initialQuery, ContactsRequest originalRequest) {
  /cts/tools/cts-reference-app-lib/src/android/cts/refapp/
ReferenceAppTestCase.java 19 import android.app.Activity;
29 public class ReferenceAppTestCase<T extends Activity> extends ActivityInstrumentationTestCase2<T> {
38 * Create a ReferenceAppTestCase for the specified activity.
41 * @param activityClass the class of the activity to instrument.
42 * @param maxStartupTimeMs the startup time the activity should start in.
50 * Create a ReferenceAppTestCase for the specified activity.
53 * @param activityClass the class of the activity to instrument.
60 // Test activity startup time.
63 Activity activity = getActivity() local
    [all...]
  /frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
DeviceDisconnectedReceiver.java 19 import android.app.Activity;
32 private final Activity mActivity;
35 public DeviceDisconnectedReceiver(Activity activity, String deviceName) {
36 mActivity = activity;
40 activity.registerReceiver(this, filter);
49 // close our activity if the device it is displaying is disconnected
  /frameworks/base/test-runner/src/android/test/
SingleLaunchActivityTestCase.java 19 import android.app.Activity;
24 * If you would like to test a single activity with an
26 * launch and finish the activity in {@link #setUp} and {@link #tearDown}.
28 * This launches the activity only once for the entire class instead of doing it
31 public abstract class SingleLaunchActivityTestCase<T extends Activity>
41 * package hosting the activity to be launched, which is specified in the AndroidManifest.xml
44 * @param pkg The package hosting the activity to be launched.
45 * @param activityClass The activity to test.
54 * The activity that will be set up for use in each test method.
56 private static Activity sActivity
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResult.java 19 import android.app.Activity;
23 * Object representing the result of a test activity like whether it succeeded or failed.
24 * Use {@link #setPassedResult(Activity, String, String)} or
25 * {@link #setFailedResult(Activity, String, String)} from a test activity like you would
26 * {@link Activity#setResult(int)} so that {@link TestListActivity}
43 /** Sets the test activity's result to pass. */
44 public static void setPassedResult(Activity activity, String testId, String testDetails) {
45 activity.setResult(Activity.RESULT_OK, createResult(activity, TEST_RESULT_PASSED, testId
    [all...]
ReportViewerActivity.java 19 import android.app.Activity;
24 public class ReportViewerActivity extends Activity {
  /frameworks/base/core/java/android/speech/
RecognizerIntent.java 21 import android.app.Activity;
49 * Starts an activity that will prompt the user for speech and send it through a
50 * speech recognizer. The results will be returned via activity results (in
51 * {@link Activity#onActivityResult}, if you start the intent using
52 * {@link Activity#startActivityForResult(Intent, int)}), or forwarded via a PendingIntent
55 * <p>Starting this intent with just {@link Activity#startActivity(Intent)} is not supported.
56 * You must either use {@link Activity#startActivityForResult(Intent, int)}, or provide a
84 * Starts an activity that will prompt the user for speech, send it through a
215 * When the intent is {@link #ACTION_RECOGNIZE_SPEECH}, the speech input activity will
216 * return results to you via the activity results mechanism. Alternatively, if you use thi
    [all...]
  /cts/tests/SignatureTest/src/android/tests/sigtest/
InstrumentationRunner.java 18 import android.app.Activity;
37 SignatureTestActivity activity = (SignatureTestActivity) startActivitySync(intent); local
40 finish(Activity.RESULT_OK, activity.mBundle);
  /cts/tests/src/android/app/cts/
ClearTop.java 19 import android.app.Activity;
23 public class ClearTop extends Activity {
TestedActivity.java 19 import android.app.Activity;
24 public class TestedActivity extends Activity {
  /cts/tests/src/android/content/cts/
ClipboardManagerListenerActivity.java 19 import android.app.Activity;
26 public class ClipboardManagerListenerActivity extends Activity {

Completed in 1268 milliseconds

<<11121314151617181920>>