FileDocCategorySizeDatePackage
ViewCompatHC.javaAPI DocAndroid 5.1 API4199Thu Mar 12 22:22:56 GMT 2015android.support.v4.view

ViewCompatHC

public class ViewCompatHC extends Object

Fields Summary
Constructors Summary
Methods Summary
public static floatgetAlpha(android.view.View view)

        return view.getAlpha();
    
static longgetFrameTime()

        return ValueAnimator.getFrameDelay();
    
public static intgetLayerType(android.view.View view)

        return view.getLayerType();
    
public static intgetMeasuredHeightAndState(android.view.View view)

        return view.getMeasuredHeightAndState();
    
public static intgetMeasuredState(android.view.View view)

        return view.getMeasuredState();
    
public static intgetMeasuredWidthAndState(android.view.View view)

        return view.getMeasuredWidthAndState();
    
public static floatgetPivotX(android.view.View view)

        return view.getPivotX();
    
public static floatgetPivotY(android.view.View view)

        return view.getPivotY();
    
public static floatgetRotation(android.view.View view)

        return view.getRotation();
    
public static floatgetRotationX(android.view.View view)

        return view.getRotationX();
    
public static floatgetRotationY(android.view.View view)

        return view.getRotationY();
    
public static floatgetScaleX(android.view.View view)

        return view.getScaleX();
    
public static floatgetScaleY(android.view.View view)

        return view.getScaleY();
    
public static floatgetTranslationX(android.view.View view)

        return view.getTranslationX();
    
public static floatgetTranslationY(android.view.View view)

        return view.getTranslationY();
    
public static floatgetX(android.view.View view)

        return view.getX();
    
public static floatgetY(android.view.View view)

        return view.getY();
    
public static voidjumpDrawablesToCurrentState(android.view.View view)

        view.jumpDrawablesToCurrentState();
    
public static intresolveSizeAndState(int size, int measureSpec, int childMeasuredState)

        return View.resolveSizeAndState(size, measureSpec, childMeasuredState);
    
public static voidsetActivated(android.view.View view, boolean activated)

        view.setActivated(activated);
    
public static voidsetAlpha(android.view.View view, float value)

        view.setAlpha(value);
    
public static voidsetLayerType(android.view.View view, int layerType, android.graphics.Paint paint)

        view.setLayerType(layerType, paint);
    
public static voidsetPivotX(android.view.View view, float value)

        view.setPivotX(value);
    
public static voidsetPivotY(android.view.View view, float value)

        view.setPivotY(value);
    
public static voidsetRotation(android.view.View view, float value)

        view.setRotation(value);
    
public static voidsetRotationX(android.view.View view, float value)

        view.setRotationX(value);
    
public static voidsetRotationY(android.view.View view, float value)

        view.setRotationY(value);
    
public static voidsetSaveFromParentEnabled(android.view.View view, boolean enabled)

        view.setSaveFromParentEnabled(enabled);
    
public static voidsetScaleX(android.view.View view, float value)

        view.setScaleX(value);
    
public static voidsetScaleY(android.view.View view, float value)

        view.setScaleY(value);
    
public static voidsetTranslationX(android.view.View view, float value)

        view.setTranslationX(value);
    
public static voidsetTranslationY(android.view.View view, float value)

        view.setTranslationY(value);
    
public static voidsetX(android.view.View view, float value)

        view.setX(value);
    
public static voidsetY(android.view.View view, float value)

        view.setY(value);