Originally posted by Jay Sanchez:
I think you can. When you create a Form object, you have two types of constructor to use:
Form myform = mew Form("Form Title");
Form myform = mew Form("Form Title", "/images/image.png");
From what I gather and what I've seen, the image is actually used to display the form title.
I think there is no such API for setting image in MIDP2.0
I only found two APIs as follows:
Form myform = new Form("Form Title");
Form myform = new Form("Form Title", <Array of Item objects to be in form>
;
Correct me if I am wrong
Vijay