Reputation: 3024
I'd like to learn android programming, I already know java, and I have already compiled all the simple "Hello world" tutorial apps I could.
I want to do something with a basic touchscreen interaction, and canvas drawing. Just "get the touch position and draw a dot there".
Can you recommend some tutorial about graphics/canvas on Android? I just want to get started, knowing all do's and don'ts for a simple situation such as this.
Upvotes: 0
Views: 2258
Reputation: 26925
You will probably encounter the Canvas
system. Therefore you should start with this tutorial series, where you will learn how to interact using MotionEvent
.
Upvotes: 2
Reputation: 15269
Below link might help you http://marakana.com/tutorials/android/2d-graphics-example.html
Upvotes: 1