Hi All,
Is it possible to find out the ring volume and / or ring profile from Series 40 Java? (For example Silent, Vibrate, Ring)
Thanks,
Jay
Hi All,
Is it possible to find out the ring volume and / or ring profile from Series 40 Java? (For example Silent, Vibrate, Ring)
Thanks,
Jay
Hi James987654! Welcome to Nokia Developer Discussion Boards!!![]()
AFAIK, there is no publicly available API's to find out call ring volume / current device profile from a Java App. But your title says you are a Nokia Internal(?) and may be you can look for any available internal/private API's![]()
Regards
Gopal
You might be able to find out if vibrate is enabled by:
However, support for Nokia UI APIs can be patchy, especially on Series 60, so you'll need to do some extensive cross-device testing to see if this actually works.Code:boolean vibrateEnabled; try { com.nokia.mid.ui.DeviceControl.startVibra(0,0); vibrateEnabled = true; } catch (IllegalStateException e) { vibrateEnabled = false; }