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

1234567891011>>

/frameworks/support/v4/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
[all...]
/frameworks/support/v4/honeycomb/android/support/v4/view/
H A DViewCompatHC.java17 package android.support.v4.view;
21 import android.view.View;
28 public static float getAlpha(View view) { argument
29 return view.getAlpha();
32 public static void setLayerType(View view, int layerType, Paint paint) { argument
33 view.setLayerType(layerType, paint);
36 public static int getLayerType(View view) { argument
37 return view.getLayerType();
44 public static int getMeasuredWidthAndState(View view) { argument
45 return view
48 getMeasuredHeightAndState(View view) argument
52 getMeasuredState(View view) argument
56 getTranslationX(View view) argument
60 getTranslationY(View view) argument
64 getX(View view) argument
68 getY(View view) argument
72 getRotation(View view) argument
76 getRotationX(View view) argument
80 getRotationY(View view) argument
84 getScaleX(View view) argument
88 getScaleY(View view) argument
92 setTranslationX(View view, float value) argument
96 setTranslationY(View view, float value) argument
100 setAlpha(View view, float value) argument
104 setX(View view, float value) argument
108 setY(View view, float value) argument
112 setRotation(View view, float value) argument
116 setRotationX(View view, float value) argument
120 setRotationY(View view, float value) argument
124 setScaleX(View view, float value) argument
128 setScaleY(View view, float value) argument
132 setPivotX(View view, float value) argument
136 setPivotY(View view, float value) argument
140 getPivotX(View view) argument
144 getPivotY(View view) argument
148 jumpDrawablesToCurrentState(View view) argument
152 setSaveFromParentEnabled(View view, boolean enabled) argument
156 setActivated(View view, boolean activated) 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/v4/jellybean-mr1/android/support/v4/view/
H A DViewCompatJellybeanMr1.java17 package android.support.v4.view;
20 import android.view.View;
27 public static int getLabelFor(View view) { argument
28 return view.getLabelFor();
31 public static void setLabelFor(View view, int id) { argument
32 view.setLabelFor(id);
35 public static void setLayerPaint(View view, Paint paint) { argument
36 view.setLayerPaint(paint);
39 public static int getLayoutDirection(View view) { argument
40 return view
43 setLayoutDirection(View view, int layoutDirection) argument
47 getPaddingStart(View view) argument
51 getPaddingEnd(View view) argument
55 setPaddingRelative(View view, int start, int top, int end, int bottom) argument
59 getWindowSystemUiVisibility(View view) argument
63 isPaddingRelative(View view) argument
[all...]
/frameworks/base/core/java/android/view/
H A DAnimationRenderStats.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 DSurface.aidl1 /* //device/java/android/android/view/Surface.aidl
18 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/v4/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...]
H A DViewPropertyAnimatorUpdateListener.java17 package android.support.v4.view;
19 import android.view.View;
32 * @param view The view associated with the ViewPropertyAnimatorCompat
34 void onAnimationUpdate(View view); argument
/frameworks/support/v4/jellybean-mr2/android/support/v4/view/
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/v4/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/data-binding/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/v4/java/android/support/v4/view/
H A DWindowCompat.java17 package android.support.v4.view;
19 import android.view.View;
20 import android.view.Window;

Completed in 2771 milliseconds

1234567891011>>