揭开时的Android接近传感器

时间:2013-04-05 05:40:14

标签: android proximitysensor

我在使用接近传感器的项目中工作我的程序应该在覆盖接近传感器时将手机静音,并在传感器被揭开时将其恢复正常。我设法编码传感器被覆盖的时间,但我不知道传感器被揭开时的远处值我需要一个代码来取消传感器被揭开时的静音。

@Override
public void onSensorChanged(SensorEvent event) {
     audio.setRingerMode(AudioManager.RINGER_MODE_SILENT);

}

2 个答案:

答案 0 :(得分:0)

public void onSensorChanged(SensorEvent event) {
   // TODO Auto-generated method stub

   if(event.sensor.getType()==Sensor.TYPE_PROXIMITY){

      if(event.values[0]<5){ audio.setRingerMode(AudioManager.RINGER_MODE_youwant);}else{ audio.setRingerMode(AudioManager.RINGER_MODE_SILENT);}
   }
  }

答案 1 :(得分:0)

以下是静音/取消静音

的代码
AudioManager   mAudioManager = (AudioManager) this.getSystemService(Context.AUDIO_SERVICE);
                int current_volume =mAudioManager.getStreamVolume(AudioManager.STREAM_MUSIC);
                //If you want to player is mute ,then set_volume variable is zero.Otherwise you may supply some value.
                int set_volume=0;
                mAudioManager.setStreamVolume(AudioManager.STREAM_MUSIC,set_volume, 0);