Searched defs:view (Results 276 - 300 of 386) sorted by relevance

<<111213141516

/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompatIcs.java17 package android.support.v4.view.accessibility;
20 import android.view.View;
21 import android.view.accessibility.AccessibilityRecord;
/frameworks/support/v4/java/android/support/v4/app/
H A DListFragment.java22 import android.view.Gravity;
23 import android.view.LayoutInflater;
24 import android.view.View;
25 import android.view.ViewGroup;
26 import android.view.animation.AnimationUtils;
75 * Provide default implementation to return a simple list view. Subclasses
77 * returned view hierarchy <em>must</em> have a ListView whose id
79 * have a sibling view id {@link android.R.id#empty android.R.id.empty}
140 * Attach to list view once the view hierarch
143 onViewCreated(View view, Bundle savedInstanceState) argument
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DPagerTitleStrip.java17 package android.support.v4.view;
26 import android.view.ViewGroup;
27 import android.view.ViewParent;
33 * child view of a ViewPager widget in your XML layout.
/frameworks/support/v4/java/android/support/v4/widget/
H A DCursorAdapter.java25 import android.view.View;
26 import android.view.ViewGroup;
278 * Makes a new view to hold the data pointed to by cursor.
282 * @param parent The parent to which the new view is attached to
283 * @return the newly created view.
288 * Makes a new drop down view to hold the data pointed to by cursor.
292 * @param parent The parent to which the new view is attached to
293 * @return the newly created view.
300 * Bind an existing view to the data pointed to by cursor
301 * @param view Existin
306 bindView(View view, Context context, Cursor cursor) argument
[all...]
H A DSimpleCursorAdapter.java22 import android.view.View;
102 * {@link ViewBinder#setViewValue(android.view.View, android.database.Cursor, int)}
104 * returned value is false and the view to bind is a TextView,
106 * false and the view to bind is an ImageView,
112 * @see android.widget.CursorAdapter#bindView(android.view.View,
120 public void bindView(View view, Context context, Cursor cursor) { argument
127 final View v = view.findViewById(to[i]);
146 " view that can be bounds by this SimpleCursorAdapter");
158 * @see #bindView(android.view.View, android.content.Context, android.database.Cursor)
171 * @see #bindView(android.view
377 setViewValue(View view, Cursor cursor, int columnIndex) argument
[all...]
/frameworks/base/core/java/android/view/
H A DHardwareRenderer.java18 package android.view;
132 * the view hierarchy.
134 * @return True if the view hierarchy can potentially be hardware accelerated,
165 * Destroys the layers used by the specified view hierarchy.
167 * @param view The root of the view hierarchy
169 abstract void destroyLayers(View view); argument
173 * view hierarchy.
175 * @param view The root of the view hierarch
177 destroyHardwareResources(View view) argument
270 draw(View view, View.AttachInfo attachInfo, HardwareDrawCallbacks callbacks, Rect dirty) argument
809 draw(View view, View.AttachInfo attachInfo, HardwareDrawCallbacks callbacks, Rect dirty) argument
1056 destroyLayers(View view) argument
1063 destroyHardwareLayer(View view) argument
1077 destroyHardwareResources(View view) argument
1093 destroyResources(View view) argument
[all...]
H A DGestureDetector.java17 package android.view;
301 * android.view.GestureDetector.OnGestureListener, android.os.Handler)} instead.
319 * android.view.GestureDetector.OnGestureListener)} instead.
H A DInputDevice.java17 package android.view;
H A DInputEventConsistencyVerifier.java17 package android.view;
H A DKeyCharacterMap.java17 package android.view;
H A DLayoutInflater.java17 package android.view;
37 * Instantiates a layout XML file into its corresponding {@link android.view.View}
54 * For performance reasons, view inflation relies heavily on pre-processing of
123 * @param context The context the view is being created in.
126 * @return View Newly created view. Return null for the default
135 * that also supplies the parent that the view created view will be
138 * @param parent The parent that the created view will be placed
141 * @param context The context the view is being created in.
144 * @return View Newly created view
[all...]
H A DMenuInflater.java17 package android.view;
19 import com.android.internal.view.menu.MenuItemImpl;
365 + " Action view already specified.");
426 + " Action view already specified.");
H A DTextureView.java17 package android.view;
132 * @param context The context to associate this view with.
142 * @param context The context to associate this view with.
143 * @param attrs The attributes of the XML tag that is inflating the view.
154 * @param context The context to associate this view with.
155 * @param attrs The attributes of the XML tag that is inflating the view.
156 * @param defStyle The default style to apply to this view. If 0, no style
233 * @param layerType The ype of layer to use with this view, must be one of
358 // When the view becomes invisible, stop updating it, it's a waste of CPU
396 * <p>Sets the transform to associate with this texture view
[all...]
H A DViewTreeObserver.java17 package android.view;
26 * A view tree observer is used to register listeners that can be notified of global
27 * changes in the view tree. Such global events include, but are not limited to,
31 * by the views hierarchy. Refer to {@link android.view.View#getViewTreeObserver()}
46 * the view tree changes.
50 * Callback method to be invoked when the focus changes in the view tree. When
51 * the view tree transitions from touch mode to non-touch mode, oldFocus is null.
52 * When the view tree transitions from non-touch mode to touch mode, newFocus is
56 * @param oldFocus The previously focused view, if any.
64 * or the visibility of views within the view tre
[all...]
H A DWindowOrientationListener.java17 package android.view;
152 * Called when the rotation view of the device has changed.
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuBuilder.java17 package com.android.internal.view.menu;
31 import android.view.ActionProvider;
32 import android.view.ContextMenu.ContextMenuInfo;
33 import android.view.KeyCharacterMap;
34 import android.view.KeyEvent;
35 import android.view.Menu;
36 import android.view.MenuItem;
37 import android.view.SubMenu;
38 import android.view.View;
46 * Implementation of the {@link android.view
1088 setHeaderInternal(final int titleRes, final CharSequence title, final int iconRes, final Drawable icon, final View view) argument
1174 setHeaderViewInt(View view) argument
[all...]
H A DMenuItemImpl.java17 package com.android.internal.view.menu;
19 import com.android.internal.view.menu.MenuView.ItemView;
26 import android.view.ActionProvider;
27 import android.view.ContextMenu.ContextMenuInfo;
28 import android.view.LayoutInflater;
29 import android.view.MenuItem;
30 import android.view.SubMenu;
31 import android.view.View;
32 import android.view.ViewDebug;
403 // If we have a view, w
553 setActionView(View view) argument
[all...]
/frameworks/base/core/java/android/animation/
H A DLayoutTransition.java19 import android.view.View;
20 import android.view.ViewGroup;
21 import android.view.ViewParent;
22 import android.view.ViewTreeObserver;
23 import android.view.animation.AccelerateDecelerateInterpolator;
24 import android.view.animation.DecelerateInterpolator;
85 * Using LayoutTransition at multiple levels of a nested view hierarchy may not work due to the
199 * view to see whether the layout changes the bounds of that view. If so, the animation
558 * target view
1141 startTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
1156 endTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
[all...]
/frameworks/base/core/java/android/preference/
H A DDialogPreference.java32 import android.view.LayoutInflater;
33 import android.view.View;
34 import android.view.Window;
35 import android.view.WindowManager;
328 * Creates the content view for the dialog (if a custom content view is
349 * @param view The content View of the dialog, if it is custom.
351 protected void onBindDialogView(View view) { argument
352 View dialogMessageView = view.findViewById(com.android.internal.R.id.message);
H A DVolumePreference.java33 import android.view.KeyEvent;
34 import android.view.View;
65 protected void onBindDialogView(View view) { argument
66 super.onBindDialogView(view);
68 final SeekBar seekBar = (SeekBar) view.findViewById(com.android.internal.R.id.seekbar);
75 view.setOnKeyListener(this);
76 view.setFocusableInTouchMode(true);
77 view.requestFocus();
131 View view = dialog.getWindow().getDecorView()
133 if (view !
[all...]
/frameworks/base/core/java/android/text/method/
H A DMetaKeyKeyListener.java23 import android.view.KeyEvent;
24 import android.view.View;
25 import android.view.KeyCharacterMap;
266 public boolean onKeyDown(View view, Editable content, int keyCode, KeyEvent event) { argument
305 public static void startSelecting(View view, Spannable content) { argument
314 public static void stopSelecting(View view, Spannable content) { argument
321 public boolean onKeyUp(View view, Editable content, int keyCode, KeyEvent event) { argument
358 public void clearMetaKeyState(View view, Editable content, int states) { argument
/frameworks/base/core/java/android/view/animation/
H A DAnimationSet.java17 package android.view.animation;
249 * @see android.view.animation.Animation#setStartTime(long)
295 * @see android.view.animation.Animation#getDuration()
319 * @see android.view.animation.Animation#computeDurationHint
363 * @see android.view.animation.Animation#getTransformation
406 * @see android.view.animation.Animation#scaleCurrentDuration(float)
418 * @see android.view.animation.Animation#initialize(int, int, int, int)
/frameworks/base/core/java/android/view/inputmethod/
H A DBaseInputConnection.java17 package android.view.inputmethod;
34 import android.view.KeyCharacterMap;
35 import android.view.KeyEvent;
36 import android.view.View;
37 import android.view.ViewRootImpl;
494 * attached to the input connection's view.
/frameworks/base/core/java/android/widget/
H A DCursorTreeAdapter.java27 import android.view.View;
28 import android.view.ViewGroup;
212 * Makes a new group view to hold the group data pointed to by cursor.
218 * @param parent The parent to which the new view is attached to
219 * @return The newly created view.
225 * Bind an existing view to the group data pointed to by cursor.
227 * @param view Existing view, returned earlier by newGroupView.
233 protected abstract void bindGroupView(View view, Context context, Cursor cursor, argument
256 * Makes a new child view t
277 bindChildView(View view, Context context, Cursor cursor, boolean isLastChild) argument
[all...]
H A DSuggestionsAdapter.java41 import android.view.View;
42 import android.view.ViewGroup;
43 import android.view.View.OnClickListener;
278 * Tags the view with cached child view look-ups.
308 public void bindView(View view, Context context, Cursor cursor) { argument
309 ChildViewCache views = (ChildViewCache) view.getTag();
415 * Sets the drawable in an image view, makes sure the view is only visible if there

Completed in 225 milliseconds

<<111213141516