Hey, guys, I was trying to find a good tutorial on how to move
objects. Let's say I've created a shape:

public class ActivityTest extends Activity {

        CustomDrawableView mCustomDrawableView;

        @Override
    protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            mCustomDrawableView = new CustomDrawableView(this);

            setContentView(mCustomDrawableView);
    }

        public static class CustomDrawableView extends View {
            private ShapeDrawable mDrawable;
            public CustomDrawableView(Context context) {
                super(context);

                int x = 10;
                int y = 10;
                int width = 50;
                int height = 50;

                mDrawable = new ShapeDrawable(new OvalShape());
                mDrawable.getPaint().setColor(0xff74AC23);
                mDrawable.setBounds(x, y, x + width, y + height);
            }

            protected void onDraw(Canvas canvas) {
                mDrawable.draw(canvas);
                invalidate();
            }
        }
}



Now I want to move the shape in the direction I intend. Let's say I
want to move 20 point down the X-Y direction. Can someone share basic
code of how would you do that?
I'll greatly appreciate it!
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to