2016-04-19 5 views
2

ユーザーが自分のアプリケーションを使用するときに電話をスリープ状態にします。ユーザーが画面を見たとき、目を覚ます必要があります。私は近接センサーを使用しようとしましたが、ユーザーは非常に近くに接近する必要があります。別の方法がありますか?Androidユーザーの外観を検出する方法

答えて

1

SensorManagerを使用してセンサーイベントを取得できます。

private SensorManager sensorManager; 
private Sensor lightSensor; 
private float lightAmount; 

public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.main); 
    sensorManager = (SensorManager)getSystemService(SENSOR_SERVICE); 
    lightSensor = sensorManager.getDefaultSensor(Sensor.TYPE_LIGHT); 

    SensorEventListener listener = new SensorEventListener() { 
     @Override 
     public void onSensorChanged(SensorEvent event) { 
      // returns the current light amount 
      lightAmount = event.data[0]; 
     } 

    lightSensor.registerListener(listener); 
} 

しかし、もちろん、彼は一人ですべての仕事をすることはできません。たとえば、ライトSensorはあなたのために便利になります。あなたの光センサーをプログラムして、画面が明るくなったら見てください。そうであれば、ユーザーはもはや見ていないはずです。また、加速度計を使用してあなたを助けることができます。

public class AccelerometerDetector { 

    boolean isAvailable = false; 
    boolean isEnabled = false; 

    /** 
    * Constructor. 
    * 
    * @param enable : True to enable the accelerometer 
    * @throws UnsupportedOperationException 
    * - thrown if the Accelerometer is not available on the current device. 
    */ 
    public AccelerometerDetector(boolean enable) 
      throws UnsupportedOperationException 
    { 
      /* Check if the sensor is available */ 
      for (String accelerometer : Sensors.getSupportedSensors()) 
        if (accelerometer.equals(Sensors.SENSOR_ACCELEROMETER)) 
          isAvailable = true; 

      if (!accelerometerAvailable) 
        throw new UnsupportedOperationException(
            "Accelerometer is not available."); 

      if (enable) 
        setEnableAccelerometer(true); 
    } 

    /** 
    * Set if the Accelerometer is enabled or not. 
    * 
    * @param enable 
    * @throws UnsupportedOperationException 
    */ 
    public void setEnableAccelerometer(boolean enable) 
      throws UnsupportedOperationException 
    { 
      if (!accelerometerAvailable) 
        throw new UnsupportedOperationException(
            "Accelerometer is not available."); 

      /* If should be enabled and isn't already */ 
      if (enable && !this.isEnabled) { 
        Sensors.enableSensor(Sensors.SENSOR_ACCELEROMETER); 
        this.isEnabled = true; 
      } else /* If should be disabled and isn't already */ 
      if (!enable && this.isEnabled) { 
        Sensors.disableSensor(Sensors.SENSOR_ACCELEROMETER); 
        this.isEnabled = false; 
      } 
    } 

    /** 
    * Read the values provided by the Accelerometer. 
    * 
    * @return Current Accelerometer-values. 
    * @throws UnsupportedOperationException 
    *    if the Accelerometer is not available on this device. 
    * @throws IllegalStateException 
    *    if the Accelerometer was disabled. 
    */ 
    public float[] readAccelerometer() 
      throws UnsupportedOperationException, IllegalStateException 
    { 
      if (!isAvailable) 
        throw new UnsupportedOperationException(
            "Accelerometer is not available."); 

      if (!this.isEnabled) 
        throw new IllegalStateException(
            "Accelerometer was disabled."); 
      /* Get number of sensor-values the sensor will return. Could be 
      * variable, depending of the amount of axis (1D, 2D or 3D 
      * accelerometer). */ 
      int sensorValues = Sensors 
          .getNumSensorValues(Sensors.SENSOR_ACCELEROMETER); 
      float[] values = new float[sensorValues]; 

      /* Make the OS fill the array we passed. */ 
      Sensors.readSensor(Sensors.SENSOR_ACCELEROMETER, values); 

      return values; 
    } 
} 

また、あなたのManifest.xmlでこの機能を宣言します:

何が「人感センサー」と呼ばれることはあるかもしれない、私はいくつかのコードを発見し、それを適応し、クラスがこのようなものでなければなりません光/近接センサー。しかし、近接センサは通常5cmの範囲しかないので使用できません。

+0

画面がオフの場合、SensorEventListenerは機能しません。どのようにしてこの問題を解決できますか? – user

1

携帯電話の動き、つまり携帯電話の向きが変更されているかどうかを確認できます。詳細はこちらDetecting movement using accelerometer - (Orientation is not changing)?

+1

私は携帯電話の動きを使いたくありません。ユーザーが画面を見ているのを検出したい – user

+0

カメラを使ってモーション検出を実行するとどうなりますか? https://github.com/phishman3579/android-motion-detection – cultrixx

関連する問題