Searched defs:view (Results 251 - 275 of 847) sorted by relevance

<<11121314151617181920>>

/frameworks/base/core/java/android/view/animation/
H A DLayoutAnimationController.java17 package android.view.animation;
24 import android.view.View;
25 import android.view.ViewGroup;
30 * A layout animation controller is used to animated a layout's, or a view
33 * is used by {@link android.view.ViewGroup} to compute the delay by which each
35 * characteristics of each child, like its index in the view group.
38 * amount of miliseconds by the index of the child in its parent view group.
40 * {@link #getDelayForView(android.view.View)} to implement a different way
42 * {@link android.view.animation.GridLayoutAnimationController} will compute the
43 * delay based on the column and row indices of the child in its parent view
322 getAnimationForView(View view) argument
370 getDelayForView(View view) argument
[all...]
H A DAnticipateOvershootInterpolator.java17 package android.view.animation;
25 import com.android.internal.view.animation.HasNativeInterpolator;
26 import com.android.internal.view.animation.NativeInterpolatorFactory;
27 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
H A DClipRectAnimation.java17 package android.view.animation;
23 * {@link android.view.animation full package} description for details and
/frameworks/base/core/java/com/android/internal/view/menu/
H A DSubMenuBuilder.java17 package com.android.internal.view.menu;
21 import android.view.Menu;
22 import android.view.MenuItem;
23 import android.view.SubMenu;
24 import android.view.View;
111 public SubMenu setHeaderView(View view) { argument
112 return (SubMenu) super.setHeaderViewInt(view);
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DBridgeInflater.java17 package android.view;
96 View view = null;
102 view = createView(name, prefix, attrs);
103 if (view != null) {
114 if (view == null) {
115 view = super.onCreateView(name, attrs);
118 // Ignore. We'll try again using the custom view loader below.
121 // Finally try again using the custom view loader
122 if (view == null) {
123 view
229 setupViewInContext(View view, AttributeSet attrs) argument
328 postInflateProcess(View view) argument
[all...]
H A DWindowCallback.java17 package android.view;
19 import android.view.ActionMode.Callback;
20 import android.view.WindowManager.LayoutParams;
21 import android.view.accessibility.AccessibilityEvent;
68 public boolean onPreparePanel(int featureId, View view, Menu menu) { argument
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/
H A DNavigationBar.java17 package com.android.setupwizardlib.view;
28 import android.view.ContextThemeWrapper;
29 import android.view.View;
121 public void onClick(View view) { argument
123 if (view == getBackButton()) {
125 } else if (view == getNextButton()) {
/frameworks/support/v4/ics/android/support/v4/view/
H A DViewPropertyAnimatorCompatICS.java16 package android.support.v4.view;
20 import android.view.View;
21 import android.view.animation.Interpolator;
25 public static void setDuration(View view, long value) { argument
26 view.animate().setDuration(value);
29 public static void alpha(View view, float value) { argument
30 view.animate().alpha(value);
33 public static void translationX(View view, float value) { argument
34 view.animate().translationX(value);
37 public static void translationY(View view, floa argument
41 getDuration(View view) argument
45 setInterpolator(View view, Interpolator value) argument
49 setStartDelay(View view, long value) argument
53 getStartDelay(View view) argument
57 alphaBy(View view, float value) argument
61 rotation(View view, float value) argument
65 rotationBy(View view, float value) argument
69 rotationX(View view, float value) argument
73 rotationXBy(View view, float value) argument
77 rotationY(View view, float value) argument
81 rotationYBy(View view, float value) argument
85 scaleX(View view, float value) argument
89 scaleXBy(View view, float value) argument
93 scaleY(View view, float value) argument
97 scaleYBy(View view, float value) argument
101 cancel(View view) argument
105 x(View view, float value) argument
109 xBy(View view, float value) argument
113 y(View view, float value) argument
117 yBy(View view, float value) argument
121 translationXBy(View view, float value) argument
125 translationYBy(View view, float value) argument
129 start(View view) argument
133 setListener(final View view, final ViewPropertyAnimatorListener listener) argument
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DKeyEventCompat.java17 package android.support.v4.view;
19 import android.view.KeyEvent;
20 import android.view.View;
36 public Object getKeyDispatcherState(View view); argument
107 public Object getKeyDispatcherState(View view) { argument
130 public Object getKeyDispatcherState(View view) { argument
131 return KeyEventCompatEclair.getKeyDispatcherState(view);
203 public static Object getKeyDispatcherState(View view) { argument
204 return IMPL.getKeyDispatcherState(view);
H A DMenuItemCompat.java17 package android.support.v4.view;
19 import android.support.v4.internal.view.SupportMenuItem;
21 import android.view.MenuItem;
22 import android.view.View;
25 * Helper for accessing features in {@link android.view.MenuItem}
29 * android.view.MenuItem}, but take a {@link android.view.MenuItem} object as an additional
62 * This item's action view collapses to a normal menu item.
63 * When expanded, the action view temporarily takes over
73 MenuItem setActionView(MenuItem item, View view); argument
120 setActionView(MenuItem item, View view) argument
165 setActionView(MenuItem item, View view) argument
286 setActionView(MenuItem item, View view) argument
[all...]
H A DNestedScrollingChildHelper.java18 package android.support.v4.view;
20 import android.view.View;
21 import android.view.ViewParent;
27 * <p>{@link android.view.View View} subclasses should instantiate a final instance of this
44 * Construct a new helper for a given view.
46 public NestedScrollingChildHelper(View view) { argument
47 mView = view;
53 * <p>This is a delegate method. Call it from your {@link android.view.View View} subclass
57 * @param enabled true to enable nested scrolling dispatch from this view, false otherwise
67 * Check if nested scrolling is enabled for this view
[all...]
H A DPagerAdapter.java17 package android.support.v4.view;
22 import android.view.View;
23 import android.view.ViewGroup;
69 * could be implemented as <code>return view == object;</code>.</p>
100 * for adding the view to the container given here, although it only
115 * for removing the view from its container, although it only must ensure
163 * for adding the view to the container given here, although it only
181 * for removing the view from its container, although it only must ensure
226 * @param view Page View to check for association with <code>object</code>
227 * @param object Object to check for association with <code>view</cod
230 isViewFromObject(View view, Object object) argument
[all...]
/frameworks/support/v4/jellybean/android/support/v4/view/
H A DViewCompatJB.java17 package android.support.v4.view;
20 import android.view.View;
21 import android.view.ViewParent;
28 public static boolean hasTransientState(View view) { argument
29 return view.hasTransientState();
32 public static void setHasTransientState(View view, boolean hasTransientState) { argument
33 view.setHasTransientState(hasTransientState);
36 public static void postInvalidateOnAnimation(View view) { argument
37 view.postInvalidateOnAnimation();
40 public static void postInvalidateOnAnimation(View view, in argument
45 postOnAnimation(View view, Runnable action) argument
49 postOnAnimationDelayed(View view, Runnable action, long delayMillis) argument
53 getImportantForAccessibility(View view) argument
57 setImportantForAccessibility(View view, int mode) argument
61 performAccessibilityAction(View view, int action, Bundle arguments) argument
65 getAccessibilityNodeProvider(View view) argument
69 getParentForAccessibility(View view) argument
73 getMinimumWidth(View view) argument
77 getMinimumHeight(View view) argument
81 requestApplyInsets(View view) argument
85 getFitsSystemWindows(View view) argument
89 hasOverlappingRendering(View view) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
H A DWindowCallbackWrapper.java17 package android.support.v7.internal.view;
19 import android.view.ActionMode;
20 import android.view.KeyEvent;
21 import android.view.Menu;
22 import android.view.MenuItem;
23 import android.view.MotionEvent;
24 import android.view.SearchEvent;
25 import android.view.View;
26 import android.view.Window;
27 import android.view
89 onPreparePanel(int featureId, View view, Menu menu) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DSubMenuBuilder.java17 package android.support.v7.internal.view.menu;
22 import android.view.Menu;
23 import android.view.MenuItem;
24 import android.view.SubMenu;
25 import android.view.View;
118 public SubMenu setHeaderView(View view) { argument
119 super.setHeaderViewInt(view);
/frameworks/support/v7/appcompat/src/android/support/v7/view/
H A DActionMode.java17 package android.support.v7.view;
19 import android.view.Menu;
20 import android.view.MenuInflater;
21 import android.view.MenuItem;
22 import android.view.View;
72 * a custom view has been set.
83 * a custom view has been set.
94 * a custom view has been set.
105 * a custom view has been set.
153 * Set a custom view fo
161 setCustomView(View view) argument
[all...]
/frameworks/base/core/java/android/text/method/
H A DAllCapsTransformationMethod.java21 import android.view.View;
42 public CharSequence getTransformation(CharSequence source, View view) { argument
53 if (view instanceof TextView) {
54 locale = ((TextView)view).getTextLocale();
63 public void onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction, argument
H A DMovementMethod.java20 import android.view.KeyEvent;
21 import android.view.MotionEvent;
45 public boolean onKeyOther(TextView view, Spannable text, KeyEvent event); argument
/frameworks/base/core/java/android/view/
H A DDisplayAdjustments.java17 package android.view;
H A DFocusFinderHelper.java17 package android.view;
H A DOrientationListener.java17 package android.view;
25 * @deprecated use {@link android.view.OrientationEventListener} instead.
102 * Look at {@link android.view.OrientationEventListener#onOrientationChanged}
H A DWindowContentFrameStats.java17 package android.view;
24 * is rendred in frames when a view is scrolled. The frame statistics are a snapshot
/frameworks/base/core/java/android/view/inputmethod/
H A DCorrectionInfo.java17 package android.view.inputmethod;
H A DExtractedText.java17 package android.view.inputmethod;
/frameworks/base/core/java/com/android/internal/view/animation/
H A DNativeInterpolatorFactoryHelper.java17 package com.android.internal.view.animation;

Completed in 605 milliseconds

<<11121314151617181920>>