Searched defs:view (Results 1 - 25 of 552) 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();
H A DChoreographer_Delegate.java16 package android.view;
H A DViewConfiguration_Accessor.java17 package android.view;
H A DViewRootImpl_Delegate.java17 package android.view;
/frameworks/support/v4/eclair-mr1/android/support/v4/view/
H A DViewCompatEclairMr1.java18 package android.support.v4.view;
20 import android.view.View;
23 public static boolean isOpaque(View view) { argument
24 return view.isOpaque();
/frameworks/base/core/java/android/view/
H A DRemotableViewMethod.java17 package android.view;
H A DViewGroupOverlay.java16 package android.view;
23 * (the "host view") which is drawn after all other content in that view
24 * (including the view group's children). Interaction with the overlay
40 * Adds a View to the overlay. The bounds of the added view should be
41 * relative to the host view. Any view added to the overlay should be
49 * <p>If the view has a parent, the view will be removed from that parent
51 * in the current view hierarch
62 add(View view) argument
73 remove(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 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;
H A DInclude.java17 package android.view;
H A DLongpress.java17 package android.view;
H A DMergeTest.java17 package android.view;
19 import android.view.Merge;
23 import android.view.ViewGroup;
H A DMutateDrawable.java17 package android.view;
H A DRemoteViewsActivity.java17 package android.view;
H A DStubbedView.java17 package android.view;
23 import android.view.View;
36 final View view = findViewById(R.id.viewStub);
37 if (view != null) {
38 view.setVisibility(View.VISIBLE);
/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/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);

Completed in 5624 milliseconds

1234567891011>>