Estoy usando PhoneGap Api 1.4.1 y también probé con 1.5.0, el botón VolumeUpbutton de PhoneGap Event y el botón volumedown no funcionan, ni funciona en el dispositivo Android ni funciona en el emulador. cuando se pulsa el botón de volumen hacia arriba o hacia abajo se debe mostrar la alerta ver el código:PhoneGap Event volumeupbutton y volumedownbutton no funciona
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>PhoneGap Volume Down Button Example</title>
<script type="text/javascript" charset="utf-8" src="phonegap.js"></script>
<script type="text/javascript" charset="utf-8">
// Call onDeviceReady when PhoneGap is loaded.
//
// At this point, the document has loaded but phonegap.js has not.
// When PhoneGap is loaded and talking with the native device,
// it will call the event `deviceready`.
//
function onLoad() {
document.addEventListener("deviceready", onDeviceReady, false);
}
// PhoneGap is loaded and it is now safe to make calls PhoneGap methods
//
function onDeviceReady() {
// Register the event listener
document.addEventListener("volumedownbutton", onVolumeDownKeyDown, false);
document.addEventListener("volumeupbutton", onVolumeUpKeyDown, false);
}
// Handle the volume down button
//
function onVolumeDownKeyDown() {
alert("Down");
}
function onVolumeUpKeyDown() {
alert("Up");
}
</script>
</head>
<body onload="onLoad()">
</body>
</html>
También intenté esto en el iphone, pero tampoco funciona :( – AsadYarKhan
Pregunta incorrecta no admitida en Iphone y Android: P – AsadYarKhan
¿Qué es una pregunta incorrecta? Puede eliminarla o responderla usted mismo si siente que su pregunta es innecesaria. –