Project: cow
Code Examples
package com.actionbarsherlock.internal.nineoldandroids.widget;
 
import android.content.Context; 
import android.util.AttributeSet; 
import android.widget.FrameLayout; 
 
import com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy; 
 
public class NineFrameLayout extends FrameLayout { 
    private final AnimatorProxy mProxy; 
 
    public NineFrameLayout(Context context) { 
        super(context); 
        mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null
    } 
    public NineFrameLayout(Context context, AttributeSet attrs) { 
        super(context, attrs); 
        mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null
    } 
    public NineFrameLayout(Context context, AttributeSet attrs, int defStyle) { 
        super(context, attrs, defStyle); 
        mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null
    } 
 
    public float getAlpha() { 
        if (AnimatorProxy.NEEDS_PROXY) { 
            return mProxy.getAlpha(); 
        } else { 
            return super.getAlpha(); 
        } 
    } 
    public void setAlpha(float alpha) { 
        if (AnimatorProxy.NEEDS_PROXY) { 
            mProxy.setAlpha(alpha); 
        } else { 
            super.setAlpha(alpha); 
        } 
    } 
    public float getTranslationY() { 
        if (AnimatorProxy.NEEDS_PROXY) { 
            return mProxy.getTranslationY(); 
        } else { 
            return super.getTranslationY(); 
        } 
    } 
    public void setTranslationY(float translationY) { 
        if (AnimatorProxy.NEEDS_PROXY) { 
            mProxy.setTranslationY(translationY); 
        } else { 
            super.setTranslationY(translationY); 
        } 
    } 
}