新聞中心
這里有您想知道的互聯(lián)網(wǎng)營(yíng)銷解決方案
詳解android光線傳感器lightsensor的使用-創(chuàng)新互聯(lián)
調(diào)用anroid的光線傳感器使用。

實(shí)現(xiàn)效果圖:

MainActivity.Java
package hk.ust.cse.comp107x.ligthsensor;
import android.content.Context;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity implements SensorEventListener{
private SensorManager mSensorManager;
private Sensor mPressure;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Get an instance of the sensor service, and use that to get an instance of
// a particular sensor.
mSensorManager = (SensorManager) getSystemService(Context.SENSOR_SERVICE);
mPressure = mSensorManager.getDefaultSensor(Sensor.TYPE_LIGHT);
}
@Override
public final void onAccuracyChanged(Sensor sensor, int accuracy) {
// Do something here if sensor accuracy changes.
}
@Override
public final void onSensorChanged(SensorEvent event) {
float light = event.values[0];
TextView v = (TextView)findViewById(R.id.textView);
v.setText(Float.toString(light));
// Do something with this sensor data.
}
@Override
protected void onResume() {
// Register a listener for the sensor.
super.onResume();
mSensorManager.registerListener(this, mPressure, SensorManager.SENSOR_DELAY_NORMAL);
}
@Override
protected void onPause() {
// Be sure to unregister the sensor when the activity pauses.
super.onPause();
mSensorManager.unregisterListener(this);
}
}
網(wǎng)頁(yè)標(biāo)題:詳解android光線傳感器lightsensor的使用-創(chuàng)新互聯(lián)
新聞來(lái)源:http://www.dlmjj.cn/article/jhcsg.html


咨詢
建站咨詢
