0

Is there a way in lwuit1.4 to get the the last month from todays date? I tried using the add method, but it is not there in lwuit's calendar api.

Michael Petrotta
  • 59,888
  • 27
  • 145
  • 179
varunkumar
  • 49
  • 6

1 Answers1

1

That's unrelated to LWUIT, its the java.util.Calendar class from CLDC which is missing the add method. It does have the set method so you you can code something like that yourself. See the code for LWUIT's Calendar class where the arrows allow navigating between months.

Shai Almog
  • 51,749
  • 5
  • 35
  • 65