Namespaces
Variants
Actions

How to get external volume buttons events

Jump to: navigation, search
Article Metadata

Article
Created: prakash.raman (08 Jun 2009)
Last edited: skalogir (22 Aug 2012)

External volume buttons

From S60 3rd Edition FP 2 onwards, external volume buttons can be used to change the volume level of MMAPI players in mobile devices that have the volume buttons present.

The buttons work in this way when a MIDlet that uses MMAPI is on foreground. They change the volume level for MMAPI Players globally, that is, the volume level of every Player in every MIDlet is altered.

A Nokia proprietary event is used to notify the MIDlet when volume is changed with External volume keys. The notification is made via PlayerListener.playerUpdate(Evendata) callback with the event com.nokia.external.volume.Event.

Code Sample

The event can be decoded to know the current global volume level as shown below:

// Effective volume considering both midlet volume and global volume
int actualVolume = 0;
int globalVolume = 0;
 
public void playerUpdate(Player p, String event, Object eventData) {
// get the current midlet volume level
int midletVolume = vc.getLevel();
 
if(event.equals("com.nokia.external.volume.event")) {
// get the current global volume level
globalVolume = Integer.parseInt(eventData.toString());
}
 
// This event is generated when midlet volume level is changed
if(event.equals("volumeChanged")) {
midletVolume = vc.getLevel();
}
 
actualVolume = (globalVolume/100) * midletVolume;
}

Reference

This page was last modified on 22 August 2012, at 15:25.
185 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved