up vote 2 down vote favorite
1
share [g+] share [fb]

I'm trying to convert an old Delphi program I wrote into Java to compile and run on my Android phone. I'm running the Android 2.1 operating system but am using version 1.6 of the SDK.

I have a routine in Delphi where I set the colour of pixels on a canvas individually along the lines of:

image1.canvas.pixels[x, y] := GetMyTColor(x, y);

Is there a Java equivalent to the property on the Canvas:

property Pixels[X, Y: Integer]: TColor
link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

It turns out this is very easy:

canvas.drawPoint(x, y, MyColour);

Where GetMyColor is a paint type:

Paint MyColour = new Paint();
int color = hex code for the colour I want to use
MyColour.setColor(color);
link|improve this answer
feedback

dont know if it works for android, but can create java midlets in pascal with midletpascal.

http://sourceforge.net/projects/midletpascal/

it has a Plot() function to set a pixel in the cellphone canvas.

hope it helps

link|improve this answer
That is an interesting project but unfortunately it doesn't answer the question. All I want to do is paint a pixel on a canvas in Java using the Android SDK. – Mattl Mar 15 '10 at 14:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.