Searched refs:container (Results 1 - 25 of 183) sorted by path

12345678

/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java1698 IActivityContainer container = mAm.createActivityContainer(homeActivityToken, null);
1699 container.attachToDisplay(displayId);
1700 container.startActivity(intent);
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiScrollable.java50 * @param container a {@link UiSelector} selector to identify the scrollable
54 public UiScrollable(UiSelector container) { argument
55 // wrap the container selector with container so that QueryController can handle
57 super(container);
98 * Searches for a child element in the present scrollable container.
122 * Searches for a child element in the present scrollable container.
150 * Searches for a child element in the present scrollable container that
171 * container. The search first looks for a child element that matches the
193 * Searches for a child element in the present scrollable container
[all...]
H A DUiSelector.java99 static UiSelector patternBuilder(UiSelector container, UiSelector pattern) { argument
101 new UiSelector().containerSelector(container).patternSelector(pattern));
/frameworks/base/core/java/android/animation/
H A DLayoutTransition.java34 * transitions for a layout container, create a LayoutTransition object and set it on any
36 * default animations to run whenever items are added to or removed from that container. To specify
42 * those changes. The changes that trigger the transition are items being added to a container
43 * (referred to as an "appearing" transition) or removed from a container (also known as
47 * items in the container that change due to the add/remove occurrence. Users of
57 * follows: when an item is being added to a layout, the other children of that container will
59 * animate the item being added. Conversely, when an item is removed from a container, the
72 * values of the target being animated (such as one of the items in a layout container that is
86 * interrelationship of the various levels of layout. Also, a container that is being scrolled
89 * may not match the actual locations when the animations finish due to the container
1483 startTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
1498 endTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivityView.java332 public void setVisible(IBinder container, boolean visible) { argument
333 if (DEBUG) Log.v(TAG, "setVisible(): container=" + container + " visible=" + visible +
338 public void onAllActivitiesComplete(IBinder container) { argument
359 ActivityContainerWrapper(IActivityContainer container) { argument
360 mIActivityContainer = container;
H A DBackStackRecord.java476 throw new IllegalStateException("Can't change container ID of fragment "
866 * container ID. This list will be modified by the method.
868 * container ID. This list will be modified by the method.
924 * container ID. This list will be modified by the method.
926 * container ID. This list will be modified by the method.
970 * and begins the transition. A different transition is started for each fragment container
990 * container ID.
992 * container ID.
1115 final Transition overallTransition, final View container,
1124 container
1113 addTransitionTargets(final TransitionState state, final Transition enterTransition, final Transition sharedElementTransition, final Transition overallTransition, final View container, final Fragment inFragment, final Fragment outFragment, final ArrayList<View> hiddenFragmentViews, final boolean isBack, final ArrayList<View> sharedElementTargets) argument
[all...]
H A DContextImpl.java2257 private ContextImpl(ContextImpl container, ActivityThread mainThread, argument
2278 if (container != null) {
2279 compatInfo = container.getDisplayAdjustments(displayId).getCompatibilityInfo();
2302 if (container != null) {
2303 mBasePackageName = container.mBasePackageName;
2304 mOpPackageName = container.mOpPackageName;
H A DFragment.java280 * container in the current activity, so the titles fragment's click code will
304 * how you can determine if a fragment placed in a container is no longer
305 * running in a layout with that container and avoid creating its view hierarchy
310 * container. They can also be parsed by the fragment in {@link #onInflate}
319 * <li>If nothing is explicitly supplied, the view ID of the container will
431 // If this Fragment is contained in another Fragment, this is that container.
434 // The optional identifier for this fragment -- either the container ID if it
440 // is the identifier of the parent container it is being added to.
473 // The parent container of the fragment after dynamically added to UI.
694 * the android:id value supplied in a layout or the container vie
1271 onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) argument
2048 performCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) argument
[all...]
H A DFragmentManager.java166 * from XML or as the container ID when added in a transaction. This first
394 * Callbacks from FragmentManagerImpl to its container.
882 ViewGroup container = null;
884 container = (ViewGroup)mContainer.findViewById(f.mContainerId);
885 if (container == null && !f.mRestored) {
893 f.mContainer = container;
895 f.mSavedFragmentState), container, f.mSavedFragmentState);
898 if (container != null) {
905 container.addView(f.mView);
966 final ViewGroup container
1851 attachActivity(Activity activity, FragmentContainer container, Fragment parent) argument
[all...]
H A DIActivityContainerCallback.aidl23 oneway void setVisible(IBinder container, boolean visible);
24 oneway void onAllActivitiesComplete(IBinder container);
H A DIActivityManager.java439 public void deleteActivityContainer(IActivityContainer container) throws RemoteException; argument
H A DListFragment.java191 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
194 container, false);
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java209 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) { argument
212 container.put(generateId(), jail);
221 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) { argument
222 final Parcelable parcelable = container.get(generateId());
/frameworks/base/core/java/android/preference/
H A DEditTextPreference.java131 ViewGroup container = (ViewGroup) dialogView
133 if (container != null) {
134 container.addView(editText, ViewGroup.LayoutParams.MATCH_PARENT,
H A DPreference.java1732 * Store this Preference hierarchy's frozen state into the given container.
1734 * @param container The Bundle in which to save the instance of this Preference.
1739 public void saveHierarchyState(Bundle container) { argument
1740 dispatchSaveInstanceState(container);
1748 * @param container The Bundle in which to save the instance of this Preference.
1753 void dispatchSaveInstanceState(Bundle container) { argument
1762 container.putParcelable(mKey, state);
1785 * Restore this Preference hierarchy's previously saved state from the given container.
1787 * @param container The Bundle that holds the previously saved state.
1792 public void restoreHierarchyState(Bundle container) { argument
1806 dispatchRestoreInstanceState(Bundle container) argument
[all...]
H A DPreferenceActivity.java989 Bundle container = new Bundle();
990 preferenceScreen.saveHierarchyState(container);
991 outState.putBundle(PREFERENCES_TAG, container);
999 Bundle container = state.getBundle(PREFERENCES_TAG);
1000 if (container != null) {
1003 preferenceScreen.restoreHierarchyState(container);
H A DPreferenceFragment.java163 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
176 return inflater.inflate(mLayoutResId, container, false);
190 Bundle container = savedInstanceState.getBundle(PREFERENCES_TAG);
191 if (container != null) {
194 preferenceScreen.restoreHierarchyState(container);
233 Bundle container = new Bundle();
234 preferenceScreen.saveHierarchyState(container);
235 outState.putBundle(PREFERENCES_TAG, container);
H A DPreferenceGroup.java32 * A container for multiple
47 * The container for child {@link Preference}s. This is sorted based on the
312 protected void dispatchSaveInstanceState(Bundle container) { argument
313 super.dispatchSaveInstanceState(container);
318 getPreference(i).dispatchSaveInstanceState(container);
323 protected void dispatchRestoreInstanceState(Bundle container) { argument
324 super.dispatchRestoreInstanceState(container);
329 getPreference(i).dispatchRestoreInstanceState(container);
/frameworks/base/core/java/android/view/
H A DGravity.java22 * larger container.
37 * container, based on the gravity direction being applied. */
45 /** Push object to the top of its container, not changing its size. */
47 /** Push object to the bottom of its container, not changing its size. */
49 /** Push object to the left of its container, not changing its size. */
51 /** Push object to the right of its container, not changing its size. */
54 /** Place object in the vertical center of its container, not changing its
58 * its container. */
61 /** Place object in the horizontal center of its container, not changing its
65 * its container
138 apply(int gravity, int w, int h, Rect container, Rect outRect) argument
159 apply(int gravity, int w, int h, Rect container, Rect outRect, int layoutDirection) argument
186 apply(int gravity, int w, int h, Rect container, int xAdj, int yAdj, Rect outRect) argument
296 apply(int gravity, int w, int h, Rect container, int xAdj, int yAdj, Rect outRect, int layoutDirection) argument
[all...]
H A DView.java6142 * containers allow the window to use resize mode since the container
6380 * used with a container that covers the entire window, allowing it to
8339 * This is called when a container is going to temporarily detach a child, with
8342 * {@link #onDetachedFromWindow()} when the container is done.
8357 * Called after {@link #onStartTemporaryDetach} when the container is done
9491 // Walk up the hierarchy to determine if we're inside a scrolling container.
9494 // For views inside a scrolling container, delay the pressed feedback for
9505 // Not inside a scrolling container, so show the feedback right away
9833 * views. This ordering change may affect layout, if the parent container
13643 * Store this view hierarchy's frozen state into the given container
13651 saveHierarchyState(SparseArray<Parcelable> container) argument
13666 dispatchSaveInstanceState(SparseArray<Parcelable> container) argument
13717 restoreHierarchyState(SparseArray<Parcelable> container) argument
13733 dispatchRestoreInstanceState(SparseArray<Parcelable> container) argument
[all...]
H A DViewGroup.java473 // Indicates how many of this container's child subtrees contain transient state
2858 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) { argument
2859 super.dispatchSaveInstanceState(container);
2865 c.dispatchSaveInstanceState(container);
2876 * @param container the container
2878 protected void dispatchFreezeSelfOnly(SparseArray<Parcelable> container) { argument
2879 super.dispatchSaveInstanceState(container);
2886 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) { argument
2887 super.dispatchRestoreInstanceState(container);
2906 dispatchThawSelfOnly(SparseArray<Parcelable> container) argument
[all...]
H A DWindow.java481 * Set the container for this window. If not set, the DecorWindow
483 * container to display itself appropriately.
485 * @param container The desired containing Window.
487 public void setContainer(Window container) { argument
488 mContainer = container;
489 if (container != null) {
493 container.mHasChildren = true;
498 * Return the container for this Window.
1286 * Window itself or its container. That is, it is the set of
/frameworks/base/core/java/android/webkit/
H A DWebViewFragment.java42 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
/frameworks/base/core/java/android/widget/
H A DAdapterView.java791 protected void dispatchSaveInstanceState(SparseArray<Parcelable> container) { argument
792 dispatchFreezeSelfOnly(container);
799 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) { argument
800 dispatchThawSelfOnly(container);
H A DDatePicker.java412 protected void dispatchRestoreInstanceState(SparseArray<Parcelable> container) { argument
413 dispatchThawSelfOnly(container);

Completed in 361 milliseconds

12345678