Searched refs:view (Results 1 - 25 of 3459) sorted by relevance

1234567891011>>

/frameworks/support/compat/kitkat/android/support/v4/view/
H A DViewCompatKitKat.java17 package android.support.v4.view;
19 import android.view.View;
25 public static int getAccessibilityLiveRegion(View view) { argument
26 return view.getAccessibilityLiveRegion();
29 public static void setAccessibilityLiveRegion(View view, int mode) { argument
30 view.setAccessibilityLiveRegion(mode);
33 public static boolean isLaidOut(View view) { argument
34 return view.isLaidOut();
37 public static boolean isAttachedToWindow(View view) { argument
38 return view
41 isLayoutDirectionResolved(View view) argument
[all...]
/frameworks/support/compat/honeycomb/android/support/v4/view/
H A DViewCompatHC.java17 package android.support.v4.view;
22 import android.view.View;
23 import android.view.ViewParent;
30 public static float getAlpha(View view) { argument
31 return view.getAlpha();
34 public static void setLayerType(View view, int layerType, Paint paint) { argument
35 view.setLayerType(layerType, paint);
38 public static int getLayerType(View view) { argument
39 return view.getLayerType();
46 public static int getMeasuredWidthAndState(View view) { argument
50 getMeasuredHeightAndState(View view) argument
54 getMeasuredState(View view) argument
58 getTranslationX(View view) argument
62 getTranslationY(View view) argument
66 getX(View view) argument
70 getY(View view) argument
74 getRotation(View view) argument
78 getRotationX(View view) argument
82 getRotationY(View view) argument
86 getScaleX(View view) argument
90 getScaleY(View view) argument
94 setTranslationX(View view, float value) argument
98 setTranslationY(View view, float value) argument
102 getMatrix(View view) argument
106 setAlpha(View view, float value) argument
110 setX(View view, float value) argument
114 setY(View view, float value) argument
118 setRotation(View view, float value) argument
122 setRotationX(View view, float value) argument
126 setRotationY(View view, float value) argument
130 setScaleX(View view, float value) argument
134 setScaleY(View view, float value) argument
138 setPivotX(View view, float value) argument
142 setPivotY(View view, float value) argument
146 getPivotX(View view) argument
150 getPivotY(View view) argument
154 jumpDrawablesToCurrentState(View view) argument
158 setSaveFromParentEnabled(View view, boolean enabled) argument
162 setActivated(View view, boolean activated) argument
170 offsetTopAndBottom(View view, int offset) argument
182 offsetLeftAndRight(View view, int offset) argument
194 tickleInvalidationFlag(View view) argument
[all...]
/frameworks/base/core/java/android/view/
H A DAnimationRenderStats.aidl17 package android.view;
H A DAppTransitionAnimationSpec.aidl17 package android.view;
H A DDisplayInfo.aidl17 package android.view;
H A DDragEvent.aidl17 package android.view;
H A DGraphicBuffer.aidl17 package android.view;
H A DInputChannel.aidl1 /* //device/java/android/android/view/InputChannel.aidl
18 package android.view;
H A DInputDevice.aidl1 /* //device/java/android/android.view.InputDevice.aidl
18 package android.view;
H A DInputEvent.aidl1 /* //device/java/android/android.view.InputEvent.aidl
18 package android.view;
H A DKeyEvent.aidl1 /* //device/java/android/android.view.KeyEvent.aidl
18 package android.view;
H A DMagnificationSpec.aidl18 package android.view;
H A DMotionEvent.aidl1 /* //device/java/android/android.view.KeyEvent.aidl
18 package android.view;
H A DPointerIcon.aidl17 package android.view;
H A DWindowAnimationFrameStats.aidl17 package android.view;
H A DWindowContentFrameStats.aidl17 package android.view;
H A DWindowInfo.aidl17 package android.view;
/frameworks/support/compat/jellybean-mr2/android/support/v4/view/
H A DViewCompatJellybeanMr2.java17 package android.support.v4.view;
19 import android.view.View;
27 public static Rect getClipBounds(View view) { argument
28 return view.getClipBounds();
31 public static void setClipBounds(View view, Rect clipBounds) { argument
32 view.setClipBounds(clipBounds);
35 public static boolean isInLayout(View view) { argument
36 return view.isInLayout();
H A DViewPropertyAnimatorCompatJellybeanMr2.java16 package android.support.v4.view;
18 import android.view.View;
19 import android.view.animation.Interpolator;
22 public static Interpolator getInterpolator(View view) { argument
23 return (Interpolator) view.animate().getInterpolator();
/frameworks/support/compat/api24/android/support/v4/view/
H A DViewCompatApi24.java17 package android.support.v4.view;
19 import android.view.PointerIcon;
20 import android.view.View;
23 public static void setPointerIcon(View view, Object pointerIcon) { argument
24 view.setPointerIcon((PointerIcon)pointerIcon);
/frameworks/support/compat/ics/android/support/v4/view/
H A DViewPropertyAnimatorListener.java1 package android.support.v4.view;/*
17 import android.view.View;
28 * @param view The view associated with the ViewPropertyAnimator
30 void onAnimationStart(View view); argument
36 * @param view The view associated with the ViewPropertyAnimator
38 void onAnimationEnd(View view); argument
44 * @param view The view associate
46 onAnimationCancel(View view) argument
[all...]
/frameworks/support/compat/api21/android/support/v4/view/
H A DViewPropertyAnimatorCompatLollipop.java17 package android.support.v4.view;
19 import android.view.View;
23 public static void translationZ(View view, float value) { argument
24 view.animate().translationZ(value);
27 public static void translationZBy(View view, float value) { argument
28 view.animate().translationZBy(value);
31 public static void z(View view, float value) { argument
32 view.animate().z(value);
35 public static void zBy(View view, float value) { argument
36 view
[all...]
/frameworks/support/compat/jellybean/android/support/v4/view/
H A DViewCompatJB.java17 package android.support.v4.view;
21 import android.view.View;
22 import android.view.ViewParent;
29 public static boolean hasTransientState(View view) { argument
30 return view.hasTransientState();
33 public static void setHasTransientState(View view, boolean hasTransientState) { argument
34 view.setHasTransientState(hasTransientState);
37 public static void postInvalidateOnAnimation(View view) { argument
38 view.postInvalidateOnAnimation();
41 public static void postInvalidateOnAnimation(View view, in argument
46 postOnAnimation(View view, Runnable action) argument
50 postOnAnimationDelayed(View view, Runnable action, long delayMillis) argument
54 getImportantForAccessibility(View view) argument
58 setImportantForAccessibility(View view, int mode) argument
62 performAccessibilityAction(View view, int action, Bundle arguments) argument
66 getAccessibilityNodeProvider(View view) argument
70 getParentForAccessibility(View view) argument
74 getMinimumWidth(View view) argument
78 getMinimumHeight(View view) argument
82 requestApplyInsets(View view) argument
86 getFitsSystemWindows(View view) argument
90 hasOverlappingRendering(View view) argument
94 setBackground(View view, Drawable drawable) argument
[all...]
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DDataBindingComponent.java18 import android.view.LayoutInflater;
19 import android.view.View;
20 import android.view.ViewGroup;
/frameworks/support/compat/api23/android/support/v4/view/
H A DViewCompatMarshmallow.java17 package android.support.v4.view;
19 import android.view.View;
22 public static void setScrollIndicators(View view, int indicators) { argument
23 view.setScrollIndicators(indicators);
26 public static void setScrollIndicators(View view, int indicators, int mask) { argument
27 view.setScrollIndicators(indicators, mask);
30 public static int getScrollIndicators(View view) { argument
31 return view.getScrollIndicators();
34 static void offsetTopAndBottom(View view, int offset) { argument
35 view
38 offsetLeftAndRight(View view, int offset) argument
[all...]

Completed in 673 milliseconds

1234567891011>>