我知道在 Galaxy Samsung SIII 中,可以在设置中配置一个选项,以避免在用户注视屏幕时关闭屏幕。我认为手机使用摄像头或某种存在传感器。
- 是否有可能以编程方式进行?
- 即使是,某些设备也无法做到这一点。我在这里想象一些可能性:使用相机、加速度计,甚至是用户活动:屏幕是否打开,触摸,我不知道。android有一个关于“用户存在”的特定库吗?在可用时使用最好的传感器?
我知道在 Galaxy Samsung SIII 中,可以在设置中配置一个选项,以避免在用户注视屏幕时关闭屏幕。我认为手机使用摄像头或某种存在传感器。
是的,有这样的事情。
您可以使用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);
}
但当然,他不能独自完成所有工作。对光传感器进行编程以查看屏幕何时变亮,如果为真,则意味着用户不再看它。您可以使用加速度计(如您所说)来帮助您。我找到了一些代码并对其进行了修改,该类应该是这样的:
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 中声明此功能:
<uses-feature android:name="android.hardware.sensor.light" />
<uses-feature android:name="android.hardware.sensor.accelerometer" />
您所说的“存在传感器”可能是光/接近传感器。但是您不能使用接近传感器,因为它通常只有 5 厘米的范围。
您可以使用设备的前置摄像头检测用户的面部,从而检查用户的存在。好消息是它可以在任何带有前置摄像头的安卓手机上使用。
这是来自 GitHub 的库,它演示了如何使用 Google Play Services 的 Vision API 来实现它。