Searched defs:view (Results 1 - 25 of 1128) sorted by relevance

1234567891011>>

/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DAttachInfo_Accessor.java17 package android.view;
24 import android.view.View.AttachInfo;
31 public static void setAttachInfo(View view) { argument
32 Context context = view.getContext();
42 view.dispatchAttachedToWindow(info, 0);
45 public static void dispatchOnPreDraw(View view) { argument
46 view.mAttachInfo.mTreeObserver.dispatchOnPreDraw();
49 public static void detachFromWindow(View view) { argument
50 if (view != null) {
51 view
[all...]
H A DViewConfiguration_Accessor.java17 package android.view;
H A DViewRootImpl_Delegate.java17 package android.view;
/frameworks/support/compat/ics/android/support/v4/view/
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
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 DViewPropertyAnimatorListenerAdapter.java17 package android.support.v4.view;
19 import android.view.View;
33 public void onAnimationStart(View view) { argument
40 public void onAnimationEnd(View view) { argument
47 public void onAnimationCancel(View view) { argument
/frameworks/support/compat/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();
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();
/frameworks/base/core/java/android/view/
H A DRemotableViewMethod.java17 package android.view;
H A DViewAnimationUtils.java17 package android.view;
51 * public static Animator createRevealWithDelay(View view, int centerX, int centerY, float startRadius, float endRadius) {
52 * Animator delayAnimator = ViewAnimationUtils.createCircularReveal(view, centerX, centerY, startRadius, startRadius);
54 * Animator revealAnimator = ViewAnimationUtils.createCircularReveal(view, centerX, centerY, startRadius, endRadius);
61 * @param view The View will be clipped to the animating circle.
63 * <code>view</code>.
65 * <code>view</code>.
69 public static Animator createCircularReveal(View view, argument
71 return new RevealAnimator(view, centerX, centerY, startRadius, endRadius);
H A DViewGroupOverlay.java16 package android.view;
24 * (the "host view") which is drawn after all other content in that view
25 * (including the view group's children). Interaction with the overlay
41 * Adds a {@code View} to the overlay. The bounds of the added view should be
42 * relative to the host view. Any view added to the overlay should be
50 * <p>If the view has a parent, the view will be removed from that parent
52 * in the current view hierarch
71 add(@onNull View view) argument
83 remove(@onNull View view) argument
[all...]
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...]
H A DCollapsibleActionView.java17 package android.view;
19 import android.view.MenuItem.OnActionExpandListener;
23 * when expanded or collapsed as an action view alongside the optional,
31 * Called when this view is expanded as an action view.
37 * Called when this view is collapsed as an action view.
H A DInflateException.java17 package android.view;
/frameworks/base/core/java/android/view/animation/
H A DInterpolator.java17 package android.view.animation;
/frameworks/base/core/tests/coretests/src/android/view/
H A DViewAttachTest.java17 package android.view;
32 * correct order. The ViewAttachTestActivity contains a view that will throw
H A DBigCache.java17 package android.view;
25 import android.view.ViewGroup;
26 import android.view.View;
27 import android.view.Display;
28 import android.view.ViewConfiguration;
57 // Compute the height of the view assuming a cache size based on ARGB8888
H A DBitmapDrawable.java17 package android.view;
24 import android.view.View;
25 import android.view.View.OnClickListener;
/frameworks/base/core/tests/coretests/src/android/view/menu/
H A DMenuLayoutLandscape.java17 package android.view.menu;
H A DMenuLayoutPortrait.java17 package android.view.menu;
/frameworks/base/graphics/tests/graphicstests/src/android/view/
H A DMockView.java17 package android.view;
/frameworks/base/tools/layoutlib/create/tests/mock_data/mock_android/view/
H A DView.java17 package mock_android.view;
/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/kitkat/android/support/v4/view/
H A DViewPropertyAnimatorCompatKK.java16 package android.support.v4.view;
19 import android.view.View;
23 public static void setUpdateListener(final View view, argument
30 listener.onAnimationUpdate(view);
34 view.animate().setUpdateListener(wrapped);

Completed in 611 milliseconds

1234567891011>>