簡體   English   中英

如何在不具有android中更新值的情況下僅獲取加速度計X,Y,Z值?

[英]How do I get just the accelerometer X, Y, Z values without having an updating value in android?

嗨,我有一類基本上是在單擊按鈕時收集GPS數據(經度,緯度和方位),時間(以H,M和S表示)和加速度計數據(X,Y,Z)的類。 到目前為止,我已經使GPS可以正常工作了(“ Bearing”出於某種原因僅顯示0?我是否需要為此設置一些特殊權限?)以及單擊Button的瞬間顯示的時間,但是加速度計X,Y和Z不斷變化,因為它們與聽眾聯系在一起。 是否有類似getX(),getY()或getZ()的方法,該方法在單擊按鈕時僅讀取一次X,Y,Z,而不會每次更改。 到目前為止,這是我的代碼:

package com.example.servicetest3;

import java.util.Calendar;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.app.Activity;
import android.content.Context;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends Activity implements SensorEventListener {

private static final long MINIMUM_DISTANCE_CHANGE_FOR_UPDATES = 0; // in Meters
private static final long MINIMUM_TIME_BETWEEN_UPDATES = 1000; // in Milliseconds

protected LocationManager locationManager;    
protected Button retrieveLocationButton;
protected TextView displayView;

//accelerometer vars
Sensor accelerometer;
SensorManager sm;
TextView acceleration;
TextView time;

@Override
public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    retrieveLocationButton = (Button) findViewById(R.id.retrieve_location_button);
    displayView = (TextView) findViewById(R.id.displayView);

    locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);

    locationManager.requestLocationUpdates(
            LocationManager.GPS_PROVIDER, 
            MINIMUM_TIME_BETWEEN_UPDATES, 
            MINIMUM_DISTANCE_CHANGE_FOR_UPDATES,
            new MyLocationListener()
    );

    //time
    time = (TextView) findViewById(R.id.time);

    //set up Accelerometer service and its corresponding textViews
    acceleration = (TextView) findViewById(R.id.acceleration);
    sm = (SensorManager) getSystemService(SENSOR_SERVICE);
    accelerometer = sm.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);
    sm.registerListener(this, accelerometer, SensorManager.SENSOR_DELAY_NORMAL);

retrieveLocationButton.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
            showCurrentLocation();
            int hour = Calendar.getInstance().get(Calendar.HOUR);
            int minute = Calendar.getInstance().get(Calendar.MINUTE);
            int second = Calendar.getInstance().get(Calendar.SECOND);
            time.setText(Integer.toString(hour) + " | " + Integer.toString(minute) + " | " + Integer.toString(second));
        }
});        

}    

protected void showCurrentLocation() {

    Location location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);

    if (location != null) {

        String message = String.format(
                "Current Location \n Longitude: %1$s \n Latitude: %2$s \n Bearing: %3$s",
                location.getLongitude(), location.getLatitude(), location.getBearing()
        );
        displayView.setText(message);

        //Toast.makeText(MainActivity.this, message, Toast.LENGTH_LONG).show();
    }

}   

private class MyLocationListener implements LocationListener {

    public void onLocationChanged(Location location) {
        String message = String.format(
                "New Location \n Longitude: %1$s \n Latitude: %2$s \n Bearing: %3$s",
                location.getLongitude(), location.getLatitude(), location.getBearing()
        );
        //Toast.makeText(MainActivity.this, message, Toast.LENGTH_LONG).show();
    }

    public void onStatusChanged(String s, int i, Bundle b) {
        Toast.makeText(MainActivity.this, "Provider status changed",
                Toast.LENGTH_LONG).show();
    }

    public void onProviderDisabled(String s) {
        Toast.makeText(MainActivity.this,
                "Provider disabled by the user. GPS turned off",
                Toast.LENGTH_LONG).show();
    }

    public void onProviderEnabled(String s) {
        Toast.makeText(MainActivity.this,
                "Provider enabled by the user. GPS turned on",
                Toast.LENGTH_LONG).show();
    }

}

//accelerometer
public void onSensorChanged(SensorEvent event) {
   acceleration.setText("X: " + event.values[0] + 
                        "\nY: " + event.values[1] +
                        "\nZ: " + event.values[2]);

}

@Override
public void onAccuracyChanged(Sensor sensor, int accuracy) {
    // TODO Auto-generated method stub

}
}

請盡快幫助!!! 謝謝!

獲取值后,只需在onSensorChanged()注銷偵聽器onSensorChanged()

public void onSensorChanged(SensorEvent event) {
    acceleration.setText("X: " + event.values[0] + 
                        "\nY: " + event.values[1] +
                        "\nZ: " + event.values[2]);

    sm.unregisterListener(this);
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM