1

ポートレート モードでのみ動作するアプリを実装しました。アプリにはコンパスがあります。サムスン タブレット (例: サムスン ギャラクシー タブ 2) とモバイル デバイスのコンパスは異なる動作をすることがわかっています。

すべてをポートレート モードにする必要があります。つまり、北 (0°) をポートレートにしたいということです。誰もがその解決策を持っていますか?

4

1 に答える 1

0

Galaxy Noteでも同じ問題が発生し、タブレットまたは電話を判別する方法に関するアドバイスに従いました. これは別の投稿にありましたが、リンクを思い出せません。コードは次のようになります。

DisplayMetrics metrics = this.getResources().getDisplayMetrics();
int screenWidth = metrics.widthPixels;
    int screenHeight = metrics.heightPixels;
    double inches = Math.sqrt((metrics.widthPixels * metrics.widthPixels)
            + (metrics.heightPixels * metrics.heightPixels))
            / metrics.densityDpi;
    // tablets typically larger than 6"" diagonally
    // this is attempt to orient both player and magnetic sensors
    if (inches > 6) {
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
    } else
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

これを行った後、sensorlistener コードの方位角設定を変換しました。

        public void onSensorChanged(SensorEvent event) {
        // Note: Not all sensor events will supply both accelerometer and
        // mag-field
        int s = event.sensor.getType();
        switch (s) {
        case Sensor.TYPE_ACCELEROMETER:
            aValues = lowPass(event.values.clone(), aValues);
            break;
        case Sensor.TYPE_MAGNETIC_FIELD:

            mValues = lowPass(event.values.clone(), mValues);
            break;
        }

        float[] R = new float[16]; // Rotation Matrix result goes here
        float[] I = new float[9]; // Inclination Matrix result goes here
        float[] oValues = new float[3]; // used for new orientation

        boolean success = SensorManager.getRotationMatrix(R, I, aValues,
                mValues);
        // if both aValues and mValues are not null success will be true
        // Also returns the Inclination Matrix

        if (success) {
            // Now get the device's orientation from the Rotation and
            // Inclination Matrices
            SensorManager.getOrientation(R, oValues);

            // Change Radians to Degrees
            oValues[0] = (360 + (float) Math.toDegrees(oValues[0])) % 360;
            oValues[1] = (float) Math.toDegrees(oValues[1]);
            oValues[2] = (float) Math.toDegrees(oValues[2]);
            azimuth = oValues[0];//
            y_az = oValues[1];// orientationValues[1];
            z_az = oValues[2];// =

            // test portrait or landscape (different on Tablets)
            int test = getResources().getConfiguration().orientation;
          // if necessary, azimuth = azimuth+270f  or + 90f %360
            heading.setText("X:" + Math.round(azimuth) + " Y:"
                    + Math.round(y_az) + " Z: " + Math.round(z_az)
                    + " degrees");

        }
    }

ほとんどのユーザーがタブレットをその方向に向け、北が風景の一番上にあるため、タブレットを横向きのままにしておくことにしました。私の新人コード (他の人からの多くの助けを借りて) があなたの役に立てば幸いです。

于 2013-07-25T21:09:49.667 に答える