0

加速度計の 1 つの軸を使用して、車のステアリングであるビットマップ img を回転させたいと考えています。マトリックスで使用する方法や、他のクラスで sensorchanged メソッドを呼び出す方法がわかりません。私のアプリは横向きモードで、センサー用とビットマップ用の 2 つのクラスがあります。私は完全に迷っています。

    public class CustomDrawableView extends View {

    AnimationSteeringActivity sens = new AnimationSteeringActivity();

    public CustomDrawableView(Context context) {
        // TODO Auto-generated constructor stub

        super(context);

    }

    @Override
    public void onDraw(Canvas canvas) {
        Bitmap bmp = BitmapFactory.decodeResource(getResources(),
                R.drawable.steering);

        int canvasWidth = canvas.getWidth();
        int canvasHeight = canvas.getHeight();
        int bitmapWidth = bmp.getWidth();
        int bitmapHeight = bmp.getHeight();

        int centreX = (canvasWidth - bitmapWidth) / 2;

        int centreY = (canvasWidth - bitmapHeight) / 2;

        canvas.drawColor(Color.WHITE);


        canvas.drawBitmap(bmp, centreX, centreY, null);

public class AnimationSteeringActivity extends Activity implements
    SensorEventListener {
/** Called when the activity is first created. */

/** Called when the activity is first created. */
CustomDrawableView mCustomDrawableView = null;
ShapeDrawable mDrawable = new ShapeDrawable();
public static int x;
public static int y;

private SensorManager sensorManager = null;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    // Get a reference to a SensorManager
    sensorManager = (SensorManager) getSystemService(SENSOR_SERVICE);
    mCustomDrawableView = new CustomDrawableView(this);
    setContentView(mCustomDrawableView);
    // setContentView(R.layout.main);

}

// This method will update the UI on new sensor events
public void onSensorChanged(SensorEvent sensorEvent) {
    {
        if (sensorEvent.sensor.getType() == Sensor.TYPE_ACCELEROMETER) {
            // the values you were calculating originally here were over
            // 10000!
            x = (int) Math.pow(sensorEvent.values[1], 2);
            y = (int) Math.pow(sensorEvent.values[2], 2);

        }

        if (sensorEvent.sensor.getType() == Sensor.TYPE_ORIENTATION) {

        }
    }
}
4

2 に答える 2

2

このリンクで実際にローテーションを行う方法を探します

ビットマップの回転

onSensorChanged メソッドでは、必要に応じて必要な x または y 値で回転します

于 2012-06-03T00:30:21.263 に答える