How to disable LWUIT's transition effects?

62 views Asked by At

I'm developing an app for Nokia Asha 501 using LWUIT 1.5 and I'm trying to disable the fade effect that happens when transitioning from one form to another by using the CategoryBay component.

I've looked around the web but only mentions of how to use transitions come as results.

Is there a way to completely disable these transition effects to save up memory resources?

1

There are 1 answers

4
Fenix On BEST ANSWER

I am doing a similar project.

First have you considered using LWUIT Tabs over CategoryBar? It doesn't have any animation AFAIK and is quite customizable.

Second for CategoryBar,

Have you tried:

cat.setTransitionSupport(false)?

Fenix