Lines Matching defs:view

22 import android.view.View;
23 import android.view.ViewGroup;
27 * a {@link android.support.v4.view.ViewPager}. You will most likely want to use a more
35 * <li>{@link #instantiateItem(android.view.ViewGroup, int)}</li>
36 * <li>{@link #destroyItem(android.view.ViewGroup, int, Object)}</li>
38 * <li>{@link #isViewFromObject(android.view.View, Object)}</li>
52 * {@link #startUpdate(android.view.ViewGroup)} indicates that the contents of the ViewPager
53 * are about to change. One or more calls to {@link #instantiateItem(android.view.ViewGroup, int)}
54 * and/or {@link #destroyItem(android.view.ViewGroup, int, Object)} will follow, and the end
55 * of an update will be signaled by a call to {@link #finishUpdate(android.view.ViewGroup)}.
56 * By the time {@link #finishUpdate(android.view.ViewGroup) finishUpdate} returns the views
58 * {@link #instantiateItem(android.view.ViewGroup, int) instantiateItem} should be added to
60 * the keys passed to {@link #destroyItem(android.view.ViewGroup, int, Object) destroyItem}
61 * should be removed. The method {@link #isViewFromObject(android.view.View, Object)} identifies
65 * as key objects, returning them from {@link #instantiateItem(android.view.ViewGroup, int)}
67 * {@link #destroyItem(android.view.ViewGroup, int, Object)} implementation would remove the
68 * View from the parent ViewGroup and {@link #isViewFromObject(android.view.View, Object)}
69 * could be implemented as <code>return view == object;</code>.</p>
100 * for adding the view to the container given here, although it only
102 * {@link #finishUpdate(android.view.ViewGroup)}.
115 * for removing the view from its container, although it only must ensure
116 * this is done by the time it returns from {@link #finishUpdate(android.view.ViewGroup)}.
121 * {@link #instantiateItem(android.view.View, int)}.
134 * {@link #instantiateItem(android.view.View, int)}.
156 * @deprecated Use {@link #startUpdate(android.view.ViewGroup)}
163 * for adding the view to the container given here, although it only
165 * {@link #finishUpdate(android.view.ViewGroup)}.
172 * @deprecated Use {@link #instantiateItem(android.view.ViewGroup, int)}
181 * for removing the view from its container, although it only must ensure
182 * this is done by the time it returns from {@link #finishUpdate(android.view.View)}.
187 * {@link #instantiateItem(android.view.View, int)}.
189 * @deprecated Use {@link #destroyItem(android.view.ViewGroup, int, Object)}
202 * {@link #instantiateItem(android.view.View, int)}.
204 * @deprecated Use {@link #setPrimaryItem(android.view.ViewGroup, int, Object)}
216 * @deprecated Use {@link #finishUpdate(android.view.ViewGroup)}
223 * as returned by {@link #instantiateItem(android.view.ViewGroup, int)}. This method is
226 * @param view Page View to check for association with <code>object</code>
227 * @param object Object to check for association with <code>view</code>
228 * @return true if <code>view</code> is associated with the key object <code>object</code>
230 public abstract boolean isViewFromObject(View view, Object object);
253 * Called when the host view is attempting to determine if an item's position
262 * {@link #instantiateItem(android.view.View, int)}.