G B
G B

Reputation: 3024

Android drawing program

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

Answers (3)

hanoo
hanoo

Reputation: 4245

You should look here in the documentation.

Upvotes: 0

Wroclai
Wroclai

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

ingsaurabh
ingsaurabh

Reputation: 15269

Below link might help you http://marakana.com/tutorials/android/2d-graphics-example.html

Upvotes: 1

Related Questions