Synced to commit df5e5013422b81b4fd05c0ac9fd964b13624847a. Includes new samples for Android Auto. Change-Id: I3fec46e2a6b3f196682a92f1afd91eb682dc2dc1
68 lines
2.5 KiB
Java
68 lines
2.5 KiB
Java
/*
|
|
* Copyright (C) 2014 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.example.android.wearable.quiz;
|
|
|
|
import android.app.IntentService;
|
|
import android.content.Intent;
|
|
import android.util.Log;
|
|
|
|
import com.google.android.gms.common.ConnectionResult;
|
|
import com.google.android.gms.common.api.GoogleApiClient;
|
|
import com.google.android.gms.wearable.Node;
|
|
import com.google.android.gms.wearable.NodeApi;
|
|
import com.google.android.gms.wearable.Wearable;
|
|
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
import static com.example.android.wearable.quiz.Constants.CONNECT_TIMEOUT_MS;
|
|
import static com.example.android.wearable.quiz.Constants.RESET_QUIZ_PATH;
|
|
|
|
/**
|
|
* Service to reset the quiz (by sending a message to the phone) when the Reset Quiz
|
|
* action on the Quiz Report is selected.
|
|
*/
|
|
public class QuizReportActionService extends IntentService {
|
|
public static final String ACTION_RESET_QUIZ = "com.example.android.wearable.quiz.RESET_QUIZ";
|
|
|
|
private static final String TAG = "QuizReportActionReceiver";
|
|
|
|
public QuizReportActionService() {
|
|
super(QuizReportActionService.class.getSimpleName());
|
|
}
|
|
|
|
@Override
|
|
public void onHandleIntent(Intent intent) {
|
|
if (intent.getAction().equals(ACTION_RESET_QUIZ)) {
|
|
GoogleApiClient googleApiClient = new GoogleApiClient.Builder(this)
|
|
.addApi(Wearable.API)
|
|
.build();
|
|
ConnectionResult result = googleApiClient.blockingConnect(CONNECT_TIMEOUT_MS,
|
|
TimeUnit.MILLISECONDS);
|
|
if (!result.isSuccess()) {
|
|
Log.e(TAG, "QuizListenerService failed to connect to GoogleApiClient.");
|
|
return;
|
|
}
|
|
NodeApi.GetConnectedNodesResult nodes =
|
|
Wearable.NodeApi.getConnectedNodes(googleApiClient).await();
|
|
for (Node node : nodes.getNodes()) {
|
|
Wearable.MessageApi.sendMessage(googleApiClient, node.getId(), RESET_QUIZ_PATH,
|
|
new byte[0]);
|
|
}
|
|
}
|
|
}
|
|
}
|