Searched refs:activity (Results 26 - 50 of 134) sorted by relevance

123456

/frameworks/base/core/tests/coretests/src/android/widget/layout/table/
H A DHorizontalGravityTest.java45 final HorizontalGravity activity = getActivity();
46 mReference = activity.findViewById(R.id.reference);
47 mCenter = activity.findViewById(R.id.center);
48 mBottomRight = activity.findViewById(R.id.bottomRight);
49 mLeft = activity.findViewById(R.id.left);
H A DWeightTest.java44 final Weight activity = getActivity();
45 mCell1 = activity.findViewById(R.id.cell1);
46 mCell3 = activity.findViewById(R.id.cell2);
47 mCell2 = activity.findViewById(R.id.cell3);
48 mRow = activity.findViewById(R.id.row);
H A DFixedWidthTest.java43 final FixedWidth activity = getActivity();
44 mFixedWidth = activity.findViewById(R.id.fixed_width);
45 mNonFixedWidth = activity.findViewById(R.id.non_fixed_width);
46 mFixedHeight = activity.findViewById(R.id.fixed_height);
H A DAddColumnTest.java45 final AddColumn activity = getActivity();
46 mAddRow = (Button) activity.findViewById(R.id.add_row_button);
47 mTable = (TableLayout) activity.findViewById(R.id.table);
/frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
H A DBaselineAlignmentSpinnerButton.java40 final Activity activity = getActivity();
41 mSpinner = activity.findViewById(R.id.reminder_value);
42 mButton = activity.findViewById(R.id.reminder_remove);
H A DFillInWrapTest.java38 final Activity activity = getActivity();
39 mChild = activity.findViewById(R.id.data);
40 mContainer = activity.findViewById(R.id.layout);
H A DLinearLayoutEditTextsTest.java39 final Activity activity = getActivity();
40 mChild = activity.findViewById(R.id.editText1);
41 mContainer = activity.findViewById(R.id.layout);
H A DWeightSumTest.java39 final Activity activity = getActivity();
40 mChild = activity.findViewById(R.id.child);
41 mContainer = activity.findViewById(R.id.container);
H A DWeightTest.java40 final Activity activity = getActivity();
41 mChild = activity.findViewById(R.id.child4);
42 mContainer = activity.findViewById(R.id.layout);
H A DBaselineButtonsTest.java44 final Activity activity = getActivity();
45 mCurrentTime = activity.findViewById(R.id.currenttime);
46 mTotalTime = activity.findViewById(R.id.totaltime);
47 mPrev = (ImageButton) activity.findViewById(R.id.prev);
48 mNext = (ImageButton) activity.findViewById(R.id.next);
49 mPause = (ImageButton) activity.findViewById(R.id.pause);
50 mLayout = activity.findViewById(R.id.layout);
H A DBaselineAlignmentCenterGravityTest.java42 final Activity activity = getActivity();
43 mButton1 = (Button) activity.findViewById(R.id.button1);
44 mButton2 = (Button) activity.findViewById(R.id.button2);
45 mButton3 = (Button) activity.findViewById(R.id.button3);
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DDeviceDisconnectedReceiver.java35 public DeviceDisconnectedReceiver(Activity activity, String deviceName) { argument
36 mActivity = activity;
40 activity.registerReceiver(this, filter);
49 // close our activity if the device it is displaying is disconnected
/frameworks/base/core/tests/coretests/src/android/widget/layout/frame/
H A DFrameLayoutMarginTest.java43 final Activity activity = getActivity();
45 mParent = activity.findViewById(R.id.parent);
47 mLeftView = activity.findViewById(R.id.left);
48 mRightView = activity.findViewById(R.id.right);
49 mTopView = activity.findViewById(R.id.top);
50 mBottomView = activity.findViewById(R.id.bottom);
H A DFrameLayoutGravityTest.java47 final Activity activity = getActivity();
49 mParent = activity.findViewById(R.id.parent);
51 mLeftView = activity.findViewById(R.id.left);
52 mRightView = activity.findViewById(R.id.right);
53 mCenterHorizontalView = activity.findViewById(R.id.center_horizontal);
55 mLeftCenterVerticalView = activity.findViewById(R.id.left_center_vertical);
56 mRighCenterVerticalView = activity.findViewById(R.id.right_center_vertical);
57 mCenterView = activity.findViewById(R.id.center);
59 mLeftBottomView = activity.findViewById(R.id.left_bottom);
60 mRightBottomView = activity
[all...]
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLocalActivity.java17 package android.app.activity;
H A DLocalDialog.java17 package android.app.activity;
H A DLocalScreen.java17 package android.app.activity;
H A DActivityTests.java17 package android.app.activity;
H A DResultReceiver.java17 package android.app.activity;
/frameworks/base/services/java/com/android/server/am/
H A DConnectionRecord.java29 final ActivityRecord activity; // If non-null, the owning activity. field in class:ConnectionRecord
39 if (activity != null) {
40 pw.println(prefix + "activity=" + activity);
50 activity = _activity;
H A DTaskAccessInfo.java27 ActivityRecord activity; field in class:TaskAccessInfo.SubTask
/frameworks/base/core/tests/coretests/src/android/view/
H A DZeroSizedTest.java46 final ZeroSized activity = getActivity();
47 mWithDimension = activity.findViewById(R.id.dimension);
48 mWithNoWdith = activity.findViewById(R.id.noWidth);
49 mWithNoHeight = activity.findViewById(R.id.noHeight);
50 mWithNoDimension = activity.findViewById(R.id.noDimension);
H A DBigCacheTest.java45 final BigCache activity = getActivity();
46 mTiny = activity.findViewById(R.id.a);
47 mLarge = activity.findViewById(R.id.b);
/frameworks/base/include/android_runtime/
H A Dandroid_app_NativeActivity.h30 ANativeActivity* activity);
33 ANativeActivity* activity, int32_t format);
36 ANativeActivity* activity, int32_t values, int32_t mask);
39 ANativeActivity* activity, int32_t flags);
42 ANativeActivity* activity, int32_t flags);
134 // delivery to the activity's default key handling.
/frameworks/base/core/java/android/app/
H A DInstrumentation.java104 * begin the appropriate first activity of the application.
343 * Start a new activity and wait for it to begin running before returning.
346 * activity component is resolved before talking with the activity manager
351 * select an activity, an exception will be thrown.
353 * <p>The function returns as soon as the activity goes idle following the
358 * @param intent Description of the activity to start.
371 throw new RuntimeException("Unable to resolve activity for: " + intent);
400 return aw.activity;
408 * when a new activity i
556 match(Context who, Activity activity, Intent intent) argument
1064 callActivityOnCreate(Activity activity, Bundle icicle) argument
1092 callActivityOnDestroy(Activity activity) argument
1129 callActivityOnRestoreInstanceState(Activity activity, Bundle savedInstanceState) argument
1141 callActivityOnPostCreate(Activity activity, Bundle icicle) argument
1152 callActivityOnNewIntent(Activity activity, Intent intent) argument
1162 callActivityOnStart(Activity activity) argument
1172 callActivityOnRestart(Activity activity) argument
1182 callActivityOnResume(Activity activity) argument
1203 callActivityOnStop(Activity activity) argument
1214 callActivityOnSaveInstanceState(Activity activity, Bundle outState) argument
1224 callActivityOnPause(Activity activity) argument
1234 callActivityOnUserLeaving(Activity activity) argument
1623 public Activity activity; field in class:Instrumentation.ActivityWaiter
[all...]

Completed in 2292 milliseconds

123456