我想获得SensorManager
的实例。我应该写下什么,而不是下面的SENSOR_SERVICE
?如果是添加到Manifest.xml的注册服务名称?
mSensorManager = (SensorManager)getSystemService(SENSOR_SERVICE);
我一直在使用此处的代码:http://developer.android.com/reference/android/hardware/SensorManager.html
编辑:没有这样的方法:getSystemService(....);
EDIT2:这样做:ctx.getSystemService(Context.SENSOR_SERVICE);
?
答案 0 :(得分:1)
所有上下文都有该功能。您需要在Context类(Activity或Service)中调用它,或者在引用它时调用它(context.getSystemService())