BallView.java :  » App » wireless-apps » org » expressme » wireless » accelerometer » Android Open Source

Android Open Source » App » wireless apps 
wireless apps » org » expressme » wireless » accelerometer » BallView.java
package org.expressme.wireless.accelerometer;

import android.content.Context;
import android.util.AttributeSet;
import android.widget.ImageView;

public class BallView extends ImageView {

    public BallView(Context context) {
        super(context);
    }

    public BallView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public BallView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    public void moveTo(int l, int t) {
        super.setFrame(l, t, l + getWidth(), t + getHeight());
    }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.