2

I am developing an application using Java ME targeting MIDP 2.0 devices.

  1. Does MIDP 2.0 support transparent PNGs and transparency ?
  2. Does LWUIT support RTL support ?
Lucifer
  • 29,392
  • 25
  • 90
  • 143
Harry.B
  • 621
  • 5
  • 18

2 Answers2

1
  1. for MIDP 2.0 support of transparency i think it depends on the MIDP implementation
    on the actual device (mostly it doesn't).
  2. yes. LWUIT latest version does support RTL.
Ibrahim Najjar
  • 19,178
  • 4
  • 69
  • 95
1

for transparency support, the API specification for Display.numAlphaLevels() method gives quite comprehensive explanation.

Support of PNG format is specified in details in javadocs for lcdui.Image class (there's section called PNG Image Format)

gnat
  • 6,213
  • 108
  • 53
  • 73