Как получить Задачу для вызова pendingIntent - PullRequest
0 голосов
/ 20 апреля 2019

Я пытался передать pendingIntent клиенту распознавания активности как часть задачи, однако pendingIntent, кажется, не вызывается.

Я использую клиент распознавания активности Google (https://developers.google.com/android/reference/com/google/android/gms/location/ActivityRecognitionClient). Я уже посмотрел пример кода (находится здесь: https://github.com/googlesamples/android-play-location/blob/master/ActivityRecognition/app/src/main/java/com/google/android/gms/location/sample/activityrecognition/MainActivity.java), но, похоже, не вижу моей проблемы.

Мой код выглядит так (я извлек)части класса, чтобы его было легче читать):


public class SignIn extends AppCompatActivity {

    private ActivityRecognitionClient mActivityRecognitionClient;

    @Override
    protected void onCreate(Bundle savedInstanceState) {

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

        mActivityRecognitionClient = new ActivityRecognitionClient(this);

        Task<Void> task = mActivityRecognitionClient.requestActivityUpdates(1000L, getActivityDetectionPendingIntent());

        task.addOnSuccessListener(result -> Log.i("test", "test"));
        task.addOnFailureListener(e -> Log.e("test", e.toString()));
    }

    private PendingIntent getActivityDetectionPendingIntent() {
        Intent intent = new Intent(this, DetectedActivitiesIntentService.class);

        return PendingIntent.getService(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
    }

package com.example.kangaroute;

import android.app.IntentService;
import android.content.Intent;
import android.util.Log;

import com.google.android.gms.location.ActivityRecognitionResult;
import com.google.android.gms.location.DetectedActivity;

import java.util.ArrayList;

class DetectedActivitiesIntentService extends IntentService {

    protected static final String TAG = "DetectedActivity";

    public DetectedActivitiesIntentService(){
        super(TAG);
    }

    @Override
    public void onCreate(){
        Log.i("test", "works");
        super.onCreate();
    }

    @Override
    protected void onHandleIntent(Intent intent) {
        ActivityRecognitionResult result = ActivityRecognitionResult.extractResult(intent);

        // Get the list of the probable activities associated with the current state of the
        // device. Each activity is associated with a confidence level, which is an int between
        // 0 and 100.
        ArrayList<DetectedActivity> detectedActivities = (ArrayList) result.getProbableActivities();

        for (DetectedActivity activity : detectedActivities){
            Log.i(TAG, activity.toString());
        }

    }
}

Когда я запускаю код, я ожидаю, что "работы" будут напечатаны в Logcat, когда я регистрирую его из onCreate() метод в DetectedActivitiesIntentService классе. Однако я ничего не вижу.

Однако «test» регистрируется из OnSuccessListener, ассоциированного с задачей. Когда я регистрирую результат, ничего не выходит ...

1 Ответ

0 голосов
/ 20 апреля 2019

Угадайте, кто забыл поставить «публичный класс», а вместо этого просто поставить «класс». Решено!

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...