When I paint shapes on SmartWatch screen, the larger the area of white shape, the darker the screen. When it small white circle it's real white, when it's big it's gray. How to set that screen brightness was constantly maximum (real white)?
Asked
Active
Viewed 1,367 times
2 Answers
0
In your control extension call setScreenState
:
import com.sonyericsson.extras.liveware.aef.control.Control;
import com.sonyericsson.extras.liveware.extension.util.control.ControlExtension;
public class MyControlExtension extends ControlExtension {
publid void example(){
setScreenState(Control.Intents.SCREEN_STATE_AUTO); //the default
setScreenState(Control.Intents.SCREEN_STATE_DIM); //low bright
setScreenState(Control.Intents.SCREEN_STATE_ON); //full bright
setScreenState(Control.Intents.SCREEN_STATE_OFF); //off
}
}

weston
- 54,145
- 21
- 145
- 203
-
SCREEN_STATE_ON it didn't help, I try it. It just didn't allow to screen turn off. – user2844566 Oct 09 '13 at 12:45
-
Any difference at all between `ON` and `DIM`? – weston Oct 09 '13 at 12:47
-
Brightness NO, just when DIM screen turn off after few seconds – user2844566 Oct 09 '13 at 18:56
-
Which version smartwatch is this? – weston Oct 12 '13 at 22:09
-
version: SmartWatch 1 – user2844566 Oct 13 '13 at 00:03
0
I've tried all I could think of and didn't manage to get it done, so I think the correct answer is: it is not possible for the SmartWatch 1.
(It seems it some feature of the firmware which should protect the screen, or the battery life. Just a guess.)

Eir
- 1,003
- 9
- 24