Searched defs:view (Results 126 - 150 of 847) sorted by relevance

1234567891011>>

/frameworks/support/v4/jellybean-mr2/android/support/v4/view/
H A DViewGroupCompatJellybeanMR2.java18 package android.support.v4.view;
20 import android.view.ViewGroup;
/frameworks/support/v4/kitkat/android/support/v4/view/
H A DScaleGestureDetectorCompatKitKat.java17 package android.support.v4.view;
19 import android.view.ScaleGestureDetector;
20 import android.view.MotionEvent;
H A DViewParentCompatKitKat.java17 package android.support.v4.view;
19 import android.view.View;
20 import android.view.ViewParent;
/frameworks/support/v4/kitkat/android/support/v4/view/accessibility/
H A DAccessibilityEventCompatKitKat.java17 package android.support.v4.view.accessibility;
19 import android.view.accessibility.AccessibilityEvent;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DBaseWrapper.java17 package android.support.v7.internal.view.menu;
H A DSubMenuWrapperICS.java17 package android.support.v7.internal.view.menu;
21 import android.support.v4.internal.view.SupportSubMenu;
22 import android.view.MenuItem;
23 import android.view.SubMenu;
24 import android.view.View;
27 * Wraps a support {@link SupportSubMenu} as a framework {@link android.view.SubMenu}
66 public SubMenu setHeaderView(View view) { argument
67 getWrappedObject().setHeaderView(view);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DContextMenuBuilder.java17 package com.android.internal.view.menu;
23 import android.view.ContextMenu;
24 import android.view.View;
27 * Implementation of the {@link android.view.ContextMenu} interface.
31 * is not a content view of a Dialog or Activity (for example, the
32 * view was added directly to the window manager) and needs to show
38 * with a view's context menu items and show the context menu.
62 public ContextMenu setHeaderView(View view) { argument
63 return (ContextMenu) super.setHeaderViewInt(view);
67 * Shows this context menu, allowing the optional original view (an
[all...]
/frameworks/support/v4/ics/android/support/v4/view/
H A DViewCompatICS.java17 package android.support.v4.view;
20 import android.view.View;
21 import android.view.View.AccessibilityDelegate;
22 import android.view.accessibility.AccessibilityEvent;
23 import android.view.accessibility.AccessibilityNodeInfo;
54 public static void setFitsSystemWindows(View view, boolean fitSystemWindows) { argument
55 view.setFitsSystemWindows(fitSystemWindows);
/frameworks/base/core/java/android/view/
H A DWindowManagerImpl.java17 package android.view;
83 public void addView(@NonNull View view, @NonNull ViewGroup.LayoutParams params) { argument
85 mGlobal.addView(view, params, mDisplay, mParentWindow);
89 public void updateViewLayout(@NonNull View view, @NonNull ViewGroup.LayoutParams params) { argument
91 mGlobal.updateViewLayout(view, params);
110 public void removeView(View view) { argument
111 mGlobal.removeView(view, false);
115 public void removeViewImmediate(View view) { argument
116 mGlobal.removeView(view, true);
H A DAbsSavedState.java17 package android.view;
41 * @param superState The state of the superclass of this view
H A DFrameStats.java17 package android.view;
H A DHapticFeedbackConstants.java17 package android.view;
74 * view for whether to perform haptic feedback, do it always.
H A DTouchDelegate.java17 package android.view;
20 import android.view.MotionEvent;
21 import android.view.View;
22 import android.view.ViewConfiguration;
25 * Helper class to handle situations where you want a view to have a larger touch area than its
26 * actual view bounds. The view whose touch area is changed is called the delegate view. This
29 * view itself.
32 * {@link android.view
[all...]
H A DWindowAnimationFrameStats.java17 package android.view;
/frameworks/base/core/tests/coretests/src/android/view/
H A DDrawableBgMinSizeTest.java17 package android.view;
20 import android.view.DrawableBgMinSize;
26 import android.view.View;
83 public void doMinimumSizeTest(View view) throws Exception { argument
84 assertTrue(view.getClass().getSimpleName() + " should respect the background Drawable's minimum width",
85 view.getWidth() >= mBackgroundDrawable.getMinimumWidth());
86 assertTrue(view.getClass().getSimpleName() + " should respect the background Drawable's minimum height",
87 view.getHeight() >= mBackgroundDrawable.getMinimumHeight());
115 public void doDiffBgMinimumSizeTest(final View view) throws Exception { argument
119 assertTrue(view
[all...]
/frameworks/support/v4/donut/android/support/v4/view/
H A DViewCompatBase.java17 package android.support.v4.view;
21 import android.view.View;
34 static ColorStateList getBackgroundTintList(View view) { argument
35 return (view instanceof TintableBackgroundView)
36 ? ((TintableBackgroundView) view).getSupportBackgroundTintList()
40 static void setBackgroundTintList(View view, ColorStateList tintList) { argument
41 if (view instanceof TintableBackgroundView) {
42 ((TintableBackgroundView) view).setSupportBackgroundTintList(tintList);
46 static PorterDuff.Mode getBackgroundTintMode(View view) { argument
47 return (view instanceo
52 setBackgroundTintMode(View view, PorterDuff.Mode mode) argument
58 isLaidOut(View view) argument
62 getMinimumWidth(View view) argument
85 getMinimumHeight(View view) argument
108 isAttachedToWindow(View view) argument
[all...]
/frameworks/support/v4/java/android/support/v4/internal/view/
H A DSupportMenuItem.java17 package android.support.v4.internal.view;
19 import android.support.v4.view.ActionProvider;
20 import android.support.v4.view.MenuItemCompat;
21 import android.view.MenuItem;
22 import android.view.View;
30 * @see android.view.MenuItem
33 public interface SupportMenuItem extends android.view.MenuItem {
60 * This item's action view collapses to a normal menu item. When expanded, the action view
101 * Set an action view fo
112 setActionView(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/content/
H A DSyncActivityTooManyDeletes.java23 import android.view.View;
24 import android.view.ViewGroup;
109 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
/frameworks/base/core/java/android/preference/
H A DSeekBarDialogPreference.java22 import android.view.View;
65 protected void onBindDialogView(View view) { argument
66 super.onBindDialogView(view);
68 final ImageView iconView = (ImageView) view.findViewById(R.id.icon);
/frameworks/base/core/java/android/text/method/
H A DKeyListener.java20 import android.view.KeyEvent;
21 import android.view.View;
27 * {@link android.view.inputmethod.InputMethod}; it should only be used
63 public boolean onKeyDown(View view, Editable text, argument
71 public boolean onKeyUp(View view, Editable text, argument
79 public boolean onKeyOther(View view, Editable text, KeyEvent event); argument
84 public void clearMetaKeyState(View view, Editable content, int states); argument
H A DTransformationMethod.java20 import android.view.View;
36 public CharSequence getTransformation(CharSequence source, View view); argument
42 public void onFocusChanged(View view, CharSequence sourceText, argument
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeProvider.java17 package android.view.accessibility;
21 import android.view.View;
27 * virtual view hierarchy rooted at a given view for accessibility purposes. A virtual
28 * view hierarchy is a tree of imaginary Views that is reported as a part of the view
35 * The main use case of these APIs is to enable a custom view that draws complex content,
45 * actions on any virtual view or the root view itself. For example:
78 * Returns an {@link AccessibilityNodeInfo} representing a virtual view,
[all...]
/frameworks/base/core/java/android/view/animation/
H A DAccelerateInterpolator.java17 package android.view.animation;
26 import com.android.internal.view.animation.HasNativeInterpolator;
27 import com.android.internal.view.animation.NativeInterpolatorFactory;
28 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
H A DAlphaAnimation.java17 package android.view.animation;

Completed in 2859 milliseconds

1234567891011>>