Searched refs:view (Results 1 - 25 of 2115) 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);
/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
[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;
H A DViewManager.java17 package android.view;
25 * Assign the passed LayoutParams to the passed View and add the view to the window.
26 * <p>Throws {@link android.view.WindowManager.BadTokenException} for certain programming
27 * errors, such as adding a second view to a window without removing the first view.
28 * <p>Throws {@link android.view.WindowManager.InvalidDisplayException} if the window is on a
31 * @param view The view to be added to this window.
32 * @param params The LayoutParams to assign to view.
34 public void addView(View view, ViewGrou argument
35 updateViewLayout(View view, ViewGroup.LayoutParams params) argument
36 removeView(View view) argument
[all...]
H A DViewOutlineProvider.java17 package android.view;
35 public void getOutline(View view, Outline outline) {
36 Drawable background = view.getBackground();
40 outline.setRect(0, 0, view.getWidth(), view.getHeight());
54 public void getOutline(View view, Outline outline) {
55 outline.setRect(0, 0, view.getWidth(), view.getHeight());
67 public void getOutline(View view, Outline outline) {
68 outline.setRect(view
87 getOutline(View view, Outline outline) argument
[all...]
/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-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
[all...]
/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/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 209 milliseconds

1234567891011>>