由于OTA更新到Marshmallow,我的基于陀螺仪的应用程序不再起作用了

时间:2015-10-17 13:50:05

标签: android sensor android-6.0-marshmallow

我用OTA将我的Nexus 5升级为Marshmallow。 由于更新基于简单传感器的活动不再起作用。 以下代码在其他设备上执行应该执行的操作(Galaxy S4 Lolipop,AVD,...)

有人也试过这个吗?我想念一下吗?

以下是代码:

的build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "23.0.1"

    defaultConfig {
        applicationId "fr.rouk1.test"
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
}

的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest
    package="fr.rouk1"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <uses-feature
        android:name="android.hardware.sensor.gyroscope"
        android:required="true"/>
    <uses-feature
        android:name="android.hardware.sensor.accelerometer"
        android:required="true"/>
    <uses-feature
        android:name="android.hardware.sensor.compass"
        android:required="true"/>

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>

                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
    </application>

</manifest>

MainActivity.java

package fr.rouk1;

import android.app.Activity;
import android.content.Context;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import android.os.Bundle;
import android.util.Log;
import android.widget.TextView;


public class MainActivity extends Activity implements SensorEventListener {

    private TextView mText;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        mText = (TextView) findViewById(R.id.text);

        initSensor();
    }

    private void initSensor() {

        SensorManager sm = (SensorManager) this.getSystemService(Context.SENSOR_SERVICE);

        if (sm.getDefaultSensor(Sensor.TYPE_ROTATION_VECTOR) == null) {
            sm.registerListener(this,
                    sm.getDefaultSensor(Sensor.TYPE_ACCELEROMETER),
                    SensorManager.SENSOR_DELAY_NORMAL);

            sm.registerListener(this,
                    sm.getDefaultSensor(Sensor.TYPE_MAGNETIC_FIELD),
                    SensorManager.SENSOR_DELAY_NORMAL);

            sm.registerListener(this,
                    sm.getDefaultSensor(Sensor.TYPE_GYROSCOPE),
                    SensorManager.SENSOR_DELAY_FASTEST);
        } else {
            sm.registerListener(this,
                    sm.getDefaultSensor(Sensor.TYPE_ROTATION_VECTOR),
                    SensorManager.SENSOR_DELAY_FASTEST);
        }
    }

    @Override
    public void onSensorChanged(SensorEvent event) {
        // this is never called

        String s = "";
        for (int i = 0; i < event.values.length; i++) {
            s = s.concat(String.format("%.4f, ", event.values[i]));
        }

        mText.setText(s);
    }

    @Override
    public void onAccuracyChanged(Sensor sensor, int accuracy) {
        switch (accuracy) {

            case SensorManager.SENSOR_STATUS_ACCURACY_HIGH:
                Log.d("rouk1", "SENSOR_STATUS_ACCURACY_HIGH");
                break;

            case SensorManager.SENSOR_STATUS_ACCURACY_LOW:
                Log.d("rouk1", "SENSOR_STATUS_ACCURACY_LOW");
                break;

            case SensorManager.SENSOR_STATUS_ACCURACY_MEDIUM:
                Log.d("rouk1", "SENSOR_STATUS_ACCURACY_MEDIUM");
                break;

            case SensorManager.SENSOR_STATUS_NO_CONTACT:
                Log.d("rouk1", "SENSOR_STATUS_NO_CONTACT");
                break;

            case SensorManager.SENSOR_STATUS_UNRELIABLE:
                Log.d("rouk1", "SENSOR_STATUS_UNRELIABLE");
                break;
        }
    }
}

1 个答案:

答案 0 :(得分:1)

终于找到了这个issue。 临时解决方案是使用SENSOR_DELAY_GAME而不是SENSOR_DELAY_FASTEST