1

このサービスを 2 つの異なる方法で呼び出してみましたが、うまくいかないようです。

最初の方法は次のとおりです。

startService(new Intent(getBaseContext(), LocationService.class));

`というエラーが表示されます

原因: `java.lang.IllegalStateException: GoogleApiClient はまだ接続されていません。

それから私はこれを試しました:

Intent serviceIntent = new Intent();
                serviceIntent.setAction("com.parseapp.eseen.eseen.service.LocationService");
                startService(serviceIntent);

また、それは機能しませんでした。逆に、まったく何も起こらず、logcat には何も表示されません。誰でも助けることができますか?コード全体は次のとおりです。

LocationService.class

public class LocationService extends Service implements GoogleApiClient.ConnectionCallbacks,
    GoogleApiClient.OnConnectionFailedListener, LocationListener {

// LogCat tag
private static final String TAG = LocationService.class.getSimpleName();

private final static int PLAY_SERVICES_RESOLUTION_REQUEST = 1000;

private Location mLastLocation;

// Google client to interact with Google API
private GoogleApiClient mGoogleApiClient;

// boolean flag to toggle periodic location updates
private boolean mRequestingLocationUpdates = false;

private LocationRequest mLocationRequest;

// Location updates intervals in sec
private static int UPDATE_INTERVAL = 10000; // 10 sec
private static int FATEST_INTERVAL = 5000; // 5 sec
private static int DISPLACEMENT = 10; // 10 meters


@Override
public void onCreate() {
    super.onCreate();

    mGoogleApiClient = new GoogleApiClient.Builder(this)
            .addConnectionCallbacks(this)
            .addOnConnectionFailedListener(this)
            .addApi(LocationServices.API).build();


}

@Override
public int onStartCommand(Intent intent, int flags, int startId) {

    if (mGoogleApiClient != null) {
        mGoogleApiClient.connect();
        togglePeriodicLocationUpdates();
    }



    return START_NOT_STICKY;
}

@Override
public IBinder onBind(Intent intent) {
    return null;
}

protected void createLocationRequest() {
    mLocationRequest = new LocationRequest();
    mLocationRequest.setInterval(UPDATE_INTERVAL);
    mLocationRequest.setFastestInterval(FATEST_INTERVAL);
    mLocationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
    mLocationRequest.setSmallestDisplacement(DISPLACEMENT);
}

private void togglePeriodicLocationUpdates() {
    mGoogleApiClient.connect();

    if (!mRequestingLocationUpdates) {

        mRequestingLocationUpdates = true;

        startLocationUpdates();

        Log.d(TAG, "Periodic location updates started!");

    } else {

        mRequestingLocationUpdates = false;

        // Stopping the location updates
        stopLocationUpdates();

        Log.d(TAG, "Periodic location updates stopped!");
    }
}

protected void stopLocationUpdates() {
    LocationServices.FusedLocationApi.removeLocationUpdates(
            mGoogleApiClient, this);
}

protected void startLocationUpdates() {
    mGoogleApiClient.connect();
    LocationServices.FusedLocationApi.requestLocationUpdates(
            mGoogleApiClient, mLocationRequest, this);

}

@Override
public void onConnected(Bundle arg0) {
    createLocationRequest();
}

@Override
public void onConnectionSuspended(int arg0) {
    mGoogleApiClient.connect();
}

@Override
public void onConnectionFailed(ConnectionResult result) {
    Log.i(TAG, "Connection failed: ConnectionResult.getErrorCode() = "
            + result.getErrorCode());
}

@Override
public void onLocationChanged(Location location) {
    // Assign the new location
    mLastLocation = location;

    Toast.makeText(getApplicationContext(), "Location changed!",
            Toast.LENGTH_SHORT).show();
}

@Override
public boolean stopService(Intent name) {
    return super.stopService(name);
}

SearchActivity.class

button = (Button)findViewById(R.id.buttonPressed);
    button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent serviceIntent = new Intent();
            serviceIntent.setAction("com.parseapp.eseen.eseen.service.LocationService");
            startService(serviceIntent);
        }
    });

AndroidManifest.xml

<service android:name=".LocationService">

        <intent-filter>
            <action android:name=".LocationService"> </action>
        </intent-filter>

    </service>

   
4

3 に答える 3

1

クラス名を使用してサービスを開始する最初の試みはうまくいきました:

startService(new Intent(getBaseContext(), LocationService.class));

サービスの実行開始後に例外が発生しました。GoogleApi 接続が成功するまで、つまり onConnected() が呼び出されるまで、コードで LocationServices を使用することはできません。コードは startLocationUpdates() に到達する前に connect() を複数回呼び出しますが、onConnected() が呼び出されるのを待ちません。そのメソッドは、接続が確立され、LocationServices を使用できるようになったときに受け取る通知です。

このデモ コードは Service ではなく AsyncTask 用ですが、CountDownLatch を使用して接続処理を行う方法についてのアイデアを提供します。

于 2015-06-24T05:36:14.980 に答える
0

パッケージ名com.parseapp.eseen.eseen およびcom.parseapp.eseen.eseen.service.LocationServiceをアクションとして使用して呼び出そうとしていますが、マニフェストで.LocationServiceとして言及しました。これは、com.parseapp.eseenを使用して呼び出す必要があることを意味します。 eseen.LocationService

in startLocationUpdates(); onConnectedメソッド LocationServices.FusedLocationApi.requestLocationUpdates( mGoogleApiClient, mLocationRequest, this);から locationupdates のリクエストを接続する前に、接続を再度呼び出して API をリクエストしています。

于 2015-06-24T05:30:02.230 に答える