0

I'm developing an application to work on S40 platform for Nokia devices using Netbeans IDE, I'm working on a visual MIDLET (MIDP 2.1) and I am trying to set a background image for the forms in my application. I can insert an imageItem but it doesn't overlap just like any other item (string item, etc.) so I can't get it to be fixed in the background where all the components will be in front of it like layers.

Is there any way possible to have a background for my Forms?

Hazem
  • 85
  • 1
  • 2
  • 9

1 Answers1

1

Form components are meant to have the platform's native look and therefore do not support setting a background. You can use Canvas to implement your own custom components. Or you can use a UI library such as lwuit for implementing your application's UI.

Gorkem Ercan
  • 3,220
  • 1
  • 18
  • 26