Kevin Boyd
Kevin Boyd

Reputation: 12379

Animation in Java ME

How could I implement animation in Java ME?
I would want to achieve the following, I want to make a List the items in the List are animated icons with some related text description...
I would like to animate all these Icons simultaneously...

Upvotes: 0

Views: 320

Answers (1)

Maurice Perry
Maurice Perry

Reputation: 32831

I'm afraid you cannot do that with the standard List component. You will need to implement your own or use a third-party component.

UPDATE

I was wrong actually: you can use a CustomItem and have a timer call repaint() every x milliseconds.

Upvotes: 1

Related Questions