How can I create create a form/list using canvas and add TextField to it?
public void paint(Graphics g){
g.setColor(44,255,44);
g.fillRect(0,0, getWidth (), getHeight ());
form = new Form("");
form.append("acfascca");
}
See this article Drawing TextField on Canvas j2me. But i feel If you are starting new project means you can go with LWUIT Framework. Also see this discussion.