HomeSort by relevance Sort by last modified time
    Searched refs:activity (Results 51 - 75 of 247) sorted by null

1 23 4 5 6 7 8 910

  /frameworks/base/core/tests/coretests/src/android/app/activity/
ResultReceiver.java 17 package android.app.activity;
ClearTop.java 17 package android.app.activity;
19 import android.app.Activity;
24 public class ClearTop extends Activity {
LaunchpadTabActivity.java 17 package android.app.activity;
LocalDeniedReceiver.java 17 package android.app.activity;
LocalGrantedReceiver.java 17 package android.app.activity;
RemoteDeniedReceiver.java 17 package android.app.activity;
RemoteGrantedReceiver.java 17 package android.app.activity;
RemoteSubActivityScreen.java 1 /* //device/apps/AndroidTests/src/com.android.unit_tests/activity/TestedScreen.java
18 package android.app.activity;
35 // We are running in a remote process, so want to have the sub-activity
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
BaselineAlignmentCenterGravityTest.java 19 import android.app.Activity;
42 final Activity activity = getActivity(); local
43 mButton1 = (Button) activity.findViewById(R.id.button1);
44 mButton2 = (Button) activity.findViewById(R.id.button2);
45 mButton3 = (Button) activity.findViewById(R.id.button3);
BaselineAlignmentZeroWidthAndWeightTest.java 23 import android.app.Activity;
40 final Activity activity = getActivity(); local
41 mShowButton = (Button) activity.findViewById(R.id.show);
  /frameworks/base/core/tests/coretests/src/android/view/
BigCacheTest.java 45 final BigCache activity = getActivity(); local
46 mTiny = activity.findViewById(R.id.a);
47 mLarge = activity.findViewById(R.id.b);
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
AddColumnTest.java 45 final AddColumn activity = getActivity(); local
46 mAddRow = (Button) activity.findViewById(R.id.add_row_button);
47 mTable = (TableLayout) activity.findViewById(R.id.table);
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerListHelper.java 37 public TrackerListHelper(ListActivity activity) {
38 super(activity, TrackerDataHelper.CSV_FORMATTER);
39 mActivity = activity;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SearchActivityView.java 19 import android.app.Activity;
27 * Finishes the containing activity on BACK, even if input method is showing.
43 private Activity getActivity() {
45 if (context instanceof Activity) {
46 return (Activity) context;
64 * Overrides the handling of the back key to dismiss the activity.
68 Activity activity = getActivity(); local
69 if (activity != null && event.getKeyCode() == KeyEvent.KEYCODE_BACK) {
79 activity.onBackPressed()
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ChooseLockSettingsHelper.java 19 import android.app.Activity;
27 private Activity mActivity;
29 public ChooseLockSettingsHelper(Activity activity) {
30 mActivity = activity;
31 mLockPatternUtils = new LockPatternUtils(activity);
42 * @return true if one exists and we launched an activity to confirm it
67 * @return true if we launched an activity to confirm pattern
85 * @return true if we launched an activity to confirm password
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
FixLaunchConfig.java 95 // get the attributes for the activity
96 String activity = config.getAttribute(LaunchConfigDelegate.ATTR_ACTIVITY, local
100 // so we need to make sure the activity is inside the old package.
101 if (activity.startsWith(mOldPackage)) {
102 // create the new activity
103 activity = mNewPackage + activity.substring(mOldPackage.length());
106 copy.setAttribute(LaunchConfigDelegate.ATTR_ACTIVITY, activity);
  /cts/tests/tests/content/src/android/content/cts/
BroadcastReceiverTest.java 199 final MockActivity activity = getActivity(); local
204 activity.registerReceiver(internalReceiver, filter);
210 activity.sendBroadcast(new Intent(ACTION_BROADCAST_INTERNAL));
213 activity.unregisterReceiver(internalReceiver);
353 final MockActivity activity = getActivity(); local
358 activity.registerReceiver(internalReceiver, filter);
360 activity.sendBroadcast(new Intent(ACTION_BROADCAST_INTERNAL));
364 Intent intent = new Intent(activity, MockService.class);
366 assertTrue(activity.bindService(intent, msc, Service.BIND_AUTO_CREATE));
370 activity.sendBroadcast(new Intent(ACTION_BROADCAST_INTERNAL))
    [all...]
  /external/bluetooth/bluez/tools/
ubcsp.c 173 /** This can only be called when the activity indication from ubcsp_poll **/
196 /** This can only be called when the activity indication from ubcsp_poll **/
367 activity; local
380 /* Keep track of what activity this received packet will cause */
382 activity = 0;
405 return activity;
458 return activity;
503 return activity;
523 return activity;
553 activity |= UBCSP_PACKET_SENT;
    [all...]
  /external/blktrace/btt/doc/
Makefile 5 btt.tex: activity.eps qhist.eps dhist.eps seek.eps
  /packages/apps/Email/src/com/android/email/activity/setup/
SpinnerOption.java 17 package com.android.email.activity.setup;
  /packages/apps/Mms/tests/src/com/android/mms/
InterceptSendSms.java 25 import android.app.Activity;
65 Activity activity = getActivity(); local
67 mRecipientsView = (TextView)activity.findViewById(R.id.recipients_editor);
68 mTextEditor = (EditText)activity.findViewById(R.id.embedded_text_editor);
73 activity.registerReceiver(mInterceptReceiver, filter);
143 setResultCode(android.app.Activity.RESULT_OK);
  /cts/tests/src/android/app/cts/
LocalActivityManagerTestHelper.java 20 import android.app.Activity;
94 Activity activity = mLocalActivityManager.getActivity(id); local
95 if (activity == null) {
100 if (!activity.getClass().getName().equals("android.app.cts."
107 activity = mLocalActivityManager.getActivity(id);
108 if (activity != null) {
286 Activity activity = mLocalActivityManager.getActivity(id); local
287 if (activity == null)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TableRowTest.java 117 TableStubActivity activity = getActivity(); local
118 activity.setContentView(com.android.cts.stub.R.layout.table_layout_1);
119 TableLayout tableLayout = (TableLayout) activity
123 Resources resources = activity.getResources();
131 activity.setContentView(com.android.cts.stub.R.layout.table_layout_2);
132 tableLayout = (TableLayout) activity.findViewById(com.android.cts.stub.R.id.table2);
154 TableStubActivity activity = getActivity(); local
155 activity.setContentView(com.android.cts.stub.R.layout.table_layout_1);
156 TableLayout tableLayout = (TableLayout) activity
162 activity.setContentView(com.android.cts.stub.R.layout.table_layout_2)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ContactsFilterInstrumentation.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("ContactsFilterInstrumentation", "Started: " + activity);
67 // Wait for the activity to finish all of its processing.
72 finish(Activity.RESULT_OK, null);
ContactsSelectInstrumentation.java 19 import android.app.Activity;
51 // First start the activity we are instrumenting -- the contacts
57 Activity activity = startActivitySync(intent); local
59 // This is the Activity object that was started, to do with as we want.
60 Log.i("ContactsSelectInstrumentation", "Started: " + activity);
62 // Monitor for the expected start activity call.
77 // Was the expected activity started?
79 Log.i("ContactsSelectInstrumentation", "Activity started!");
81 Log.i("ContactsSelectInstrumentation", "*** ACTIVITY NOT STARTED!")
    [all...]

Completed in 1857 milliseconds

1 23 4 5 6 7 8 910