HomeSort by relevance Sort by last modified time
    Searched refs:Activity (Results 601 - 625 of 2284) sorted by null

<<21222324252627282930>>

  /packages/apps/Gallery2/src/com/android/photos/
AlbumActivity.java 19 import android.app.Activity;
22 public class AlbumActivity extends Activity implements MultiChoiceManager.Provider {
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AbstractMailActivity.java 20 import android.app.Activity;
27 * A complete Mail activity instance. This is the toplevel class that creates the views and handles
28 * the activity lifecycle.</p>
31 * this activity and overriding a small subset of the life cycle methods: for example
37 public abstract class AbstractMailActivity extends Activity
86 * Get the contextual help parameter for this activity. This can be overridden
89 * @return The help context of this activity.
CreateShortcutActivity.java 23 import android.app.Activity;
27 public class CreateShortcutActivity extends Activity {
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
FrontDoor.java 19 import android.app.Activity;
24 public final class FrontDoor extends Activity {
HomeNormal.java 21 import android.app.Activity;
26 public class HomeNormal extends Activity implements ContactsListFragment.Controller {
42 // The user clicked on an item in the the list, start an activity to view it
  /pdk/apps/HelloPDK/src/com/example/android/helloPDK/jni/
HelloJni.java 21 import android.app.Activity;
32 public class HelloJni extends Activity {
35 * Called with the activity is first created.
  /sdk/testapps/libsTest/app/src/com/android/tests/libstest/app/
App.java 3 import android.app.Activity;
13 public static void handleTextView(Activity a) {
  /sdk/testapps/libsTest/lib1/src/com/android/tests/libstest/lib1/
Lib1.java 3 import android.app.Activity;
13 public static void handleTextView(Activity a) {
  /sdk/testapps/libsTest/lib2/src/com/android/tests/libstest/lib2/
Lib2.java 3 import android.app.Activity;
13 public static void handleTextView(Activity a) {
  /cts/tests/tests/app/src/android/app/cts/
Instrumentation_ActivityMonitorTest.java 19 import android.app.Activity;
39 ActivityResult result = new ActivityResult(Activity.RESULT_OK, new Intent());
47 Activity lastActivity = am.getLastActivity();
54 Activity activity = am.waitForActivity(); local
55 assertSame(activity, lastActivity);
57 assertTrue(activity instanceof InstrumentationTestActivity);
58 activity.finish();
62 activity = null;
63 while (activity == null && System.currentTimeMillis() < timeout)
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/instrumentation/
InstrumentationDriver.java 19 import android.app.Activity;
52 Activity runningActivity = getRunningActivity();
64 private Activity getRunningActivity() {
69 Activity runningActivity = ActivityUtils.getRunningActivity();
76 "Timed out after %d milliseconds waiting for foreground activity", timeoutMillis));
  /frameworks/base/core/java/android/view/
ContextMenu.java 19 import android.app.Activity;
30 * {@link Activity#registerForContextMenu} and override
31 * {@link Activity#onCreateContextMenu}.
  /packages/apps/Gallery/src/com/android/camera/
PhotoAppWidgetConfigure.java 21 import android.app.Activity;
47 setResult(Activity.RESULT_CANCELED);
82 resultCode = Activity.RESULT_OK;
94 resultCode = Activity.RESULT_CANCELED;
  /packages/apps/Settings/src/com/android/settings/
ChooseLockSettingsHelper.java 21 import android.app.Activity;
31 private Activity mActivity;
34 public ChooseLockSettingsHelper(Activity activity) {
35 mActivity = activity;
36 mLockPatternUtils = new LockPatternUtils(activity);
39 public ChooseLockSettingsHelper(Activity activity, Fragment fragment) {
40 this(activity);
52 * @return true if one exists and we launched an activity to confirm i
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
CtsTestHelper.java 19 import android.app.Activity;
29 public static void storeCtsTestResult(Activity activity, float reportedFOV, float measuredFOV) {
33 activity.setResult(Activity.RESULT_OK, it);
  /development/apps/CustomLocale/src/com/android/customlocale2/
CustomLocaleReceiver.java 19 import android.app.Activity;
49 setResult(Activity.RESULT_CANCELED, null, null);
76 setResult(Activity.RESULT_OK, locale, null);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ContactsFilterInstrumentation.java 19 import android.app.Activity;
46 // First start the activity we are instrumenting -- the contacts
52 Activity activity = startActivitySync(intent); local
54 // This is the Activity object that was started, to do with as we want.
55 Log.i("ContactsFilterInstrumentation", "Started: " + activity);
65 // Wait for the activity to finish all of its processing.
70 finish(Activity.RESULT_OK, null);
ContactsSelectInstrumentation.java 19 import android.app.Activity;
48 // First start the activity we are instrumenting -- the contacts
54 Activity activity = startActivitySync(intent); local
56 // This is the Activity object that was started, to do with as we want.
57 Log.i("ContactsSelectInstrumentation", "Started: " + activity);
59 // Monitor for the expected start activity call.
74 // Was the expected activity started?
76 Log.i("ContactsSelectInstrumentation", "Activity started!");
78 Log.i("ContactsSelectInstrumentation", "*** ACTIVITY NOT STARTED!")
    [all...]
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/ui/
DialogHelperImpl.java 19 import android.app.Activity;
25 * Uses an {@link Activity} to show Dialogs.
27 * Instantiate this class inside your Activity.
33 * Override your Activity's onCreateDialog(int, Bundle) method, as follows:
50 * should do something like this in your Activity:
75 private final Activity mActivity;
77 public DialogHelperImpl(Activity activity) {
78 mActivity = activity;
95 * You should call this method from your Activity's onCreateDialog(int, Bundle) method
    [all...]
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
WiFiDirectBroadcastReceiver.java 20 import android.app.Activity;
38 private Activity activity; field in class:WiFiDirectBroadcastReceiver
43 * @param activity activity associated with the receiver
46 Activity activity) {
50 this.activity = activity;
78 (ConnectionInfoListener) activity);
    [all...]
  /development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
MainActivity.java 19 import android.app.Activity;
28 * The launchpad activity for this sample project. This activity launches other activities that
33 * This class describes an individual sample (the sample title, and the activity class that
38 private Class<? extends Activity> activityClass;
40 public Sample(int titleResId, Class<? extends Activity> activityClass) {
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
DemoKitLaunch.java 3 import android.app.Activity;
10 public class DemoKitLaunch extends Activity {
13 static Intent createIntent(Activity activity) {
14 Display display = activity.getWindowManager().getDefaultDisplay();
20 intent = new Intent(activity, DemoKitTablet.class);
23 intent = new Intent(activity, DemoKitPhone.class);
39 Log.e(TAG, "unable to start DemoKit activity", e);
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
FullScreenVideoTestAwContentsClient.java 7 import android.app.Activity;
30 private Activity mActivity;
32 public FullScreenVideoTestAwContentsClient(Activity activity) {
33 mActivity = activity;
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/signin/
AndroidProfileOAuth2TokenServiceHelper.java 8 import android.app.Activity;
29 public static void getOAuth2AccessToken(Context context, @Nullable Activity activity,
31 OAuth2TokenService.getOAuth2AccessToken(context, activity, account, scope, callback);
47 @Nullable Activity activity, Account account, String scope,
50 context, activity, account, scope, timeout, unit);
  /external/chromium_org/chrome/test/chromedriver/test/webview_shell/java/src/org/chromium/chromedriver_webview_shell/
Main.java 7 import android.app.Activity;
19 public class Main extends Activity {
34 final Activity activity = this; local
37 activity.setProgress(progress * 100);
43 Toast.makeText(activity, "Error: " + description, Toast.LENGTH_SHORT).show();

Completed in 505 milliseconds

<<21222324252627282930>>