tags:

views:

15

answers:

3

How can i draw myname (or any string) on the wall paper of mobile through a j2me programe ? Please answer me as soon as possible Thanks to every body in advance.

A: 

This is impossible with J2ME.

BlaXpirit
A: 

If use Canvas or CustomItem it is possible.Inside the paint method we should insert a command "g.drawString()". here g is an object of Graphics class.The syntax of drawString() is public void drawString(String text, int x, int y, int anchor)

SIVAKUMAR.J