Lines Matching refs:object

569  * classes change actual properties of the View object, such as {@link #setAlpha(float) alpha} and
577 * You can attach an {@link Animation} object to a view using
2661 * The Camera object is used to compute a 3D matrix when rotationX or rotationY are set.
2697 * The amount of translation of the object away from its left property (post-layout).
2703 * The amount of translation of the object away from its top property (post-layout).
4340 * Register a drag event listener callback object for this View. The parameter is
4860 * {@link AccessibilityNodeInfo#recycle()} to minimize object creation.
5576 * insets object is propagated down the hierarchy, so any changes made to it will
7724 * @param event The KeyEvent object that defines the button action.
7772 * @param event The KeyEvent object that defines the button action.
7810 * @param event The KeyEvent object that defines the button action.
9222 * By default, the pivot point is centered on the object.
9272 * and {@link #setScaleY(float) scaled}. By default, the pivot point is centered on the object.
9373 * on the parent and this object. The return value indicates whether the subclass handles
9718 * This position is post-layout, in addition to wherever the object's
9730 * This effectively positions the object post-layout, in addition to wherever the object's
9759 * This position is post-layout, in addition to wherever the object's
9772 * This effectively positions the object post-layout, in addition to wherever the object's
10833 * object.
11910 * Retrieve private session object this view hierarchy is using to
11912 * @return the session object to communicate with the window manager
12048 * @return Returns a Parcelable object containing the view's current dynamic
12248 * Updates the {@link Paint} object used with the current layer (used only if the current
12572 * @return A new or reused DisplayList object.
14131 * @return Resources object.
14455 * a Drawable object or 0 to remove the background.
16125 * You pass a DragShadowBuilder object to the system when you start the drag. The system
16128 * {@link android.graphics.Canvas} object, then it calls {@link #onDrawShadow(Canvas) onDrawShadow()}
16152 * Construct a shadow builder object with no associated View. This
16156 * reference to any View object. If they are not overridden, then the result is an
16164 * Returns the View object that had been passed to the
16168 * constructor was used to instantiate the builder object, this method will return
16171 * @return The View object associate with this builder object.
16209 * Draws the shadow image. The system creates the {@link android.graphics.Canvas} object
16213 * @param canvas A {@link android.graphics.Canvas} object in which to draw the shadow image.
16227 * {@link android.view.View.DragShadowBuilder} object to the system. The
16228 * system calls this object's {@link DragShadowBuilder#onProvideShadowMetrics(Point, Point)}
16229 * to get metrics for the drag shadow, and then calls the object's
16234 * this either by calling the View object's drag listener (an implementation of
16236 * View object's {@link android.view.View#onDragEvent(DragEvent) onDragEvent()} method.
16237 * Both are passed a {@link android.view.DragEvent} object that has a
16242 * Your application can invoke startDrag() on any attached View object. The View object does not
16246 * @param data A {@link android.content.ClipData} object pointing to the data to be
16248 * @param shadowBuilder A {@link android.view.View.DragShadowBuilder} object for building the
16251 * drop operation. This Object is put into every DragEvent object sent by the system during the
16301 // Cache the local state object for delivery with DragEvents
16329 * {@link android.view.DragEvent} object. A call to
16335 * in DragEvent, indicating the type of drag event represented by this object.
16457 * @param context The Context object for your activity or application.
17056 public void setValue(View object, float value) {
17057 object.setAlpha(value);
17061 public Float get(View object) {
17062 return object.getAlpha();
17072 public void setValue(View object, float value) {
17073 object.setTranslationX(value);
17077 public Float get(View object) {
17078 return object.getTranslationX();
17088 public void setValue(View object, float value) {
17089 object.setTranslationY(value);
17093 public Float get(View object) {
17094 return object.getTranslationY();
17104 public void setValue(View object, float value) {
17105 object.setX(value);
17109 public Float get(View object) {
17110 return object.getX();
17120 public void setValue(View object, float value) {
17121 object.setY(value);
17125 public Float get(View object) {
17126 return object.getY();
17136 public void setValue(View object, float value) {
17137 object.setRotation(value);
17141 public Float get(View object) {
17142 return object.getRotation();
17152 public void setValue(View object, float value) {
17153 object.setRotationX(value);
17157 public Float get(View object) {
17158 return object.getRotationX();
17168 public void setValue(View object, float value) {
17169 object.setRotationY(value);
17173 public Float get(View object) {
17174 return object.getRotationY();
17184 public void setValue(View object, float value) {
17185 object.setScaleX(value);
17189 public Float get(View object) {
17190 return object.getScaleX();
17200 public void setValue(View object, float value) {
17201 object.setScaleY(value);
17205 public Float get(View object) {
17206 return object.getScaleY();
17234 * MeasureSpecs are implemented as ints to reduce object allocation. This class
17365 * This method returns a ViewPropertyAnimator object, which can be used to animate
17395 * @param event The KeyEvent object containing full information about
17413 * @param event The MotionEvent object containing full information about
17431 * @param event The MotionEvent object containing full information about
17449 * @param event The MotionEvent object containing full information about
17488 * @param event The {@link android.view.DragEvent} object for the drag event.