【发布时间】:2014-11-11 04:11:36
【问题描述】:
我正在使用可穿戴设备,我已经从我的微型应用程序(在可穿戴设备上运行)with some little restrictions 创建了通知,我想知道如何为在手机上打开主应用的操作。
【问题讨论】:
标签: android android-intent android-notifications android-pendingintent wear-os
我正在使用可穿戴设备,我已经从我的微型应用程序(在可穿戴设备上运行)with some little restrictions 创建了通知,我想知道如何为在手机上打开主应用的操作。
【问题讨论】:
标签: android android-intent android-notifications android-pendingintent wear-os
不知道有没有其他办法。
但是它可以工作。
你在你的穿戴模块中构建一个通知,然后在穿戴中启动一个广播。
广播(在穿戴设备上运行)使用 Message.API 向移动模块发送消息。
在移动模块上有一个 WearableListenerService,它在移动设备上启动 MainActivity。
在您的 Wear 中构建通知:
// Notification
NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_launcher)
//.setContentTitle(mNotificationUtil.getTitle())
.setContentText("Text")
.setContentIntent(getPendingIntent(this));
// Get an instance of the NotificationManager service
NotificationManagerCompat notificationManager =
NotificationManagerCompat.from(this);
// Build the notification and issues it with notification manager.
notificationManager.notify(1, notificationBuilder.build());
}
private PendingIntent getPendingIntent(MainActivity mainActivity) {
final String INTENT_ACTION = "it.gmariotti.receiver.intent.action.TEST";
Intent intent = new Intent();
intent.setAction(INTENT_ACTION);
PendingIntent pendingIntent =
PendingIntent.getBroadcast(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
return pendingIntent;
}
此通知启动广播消息。 在你的 wear/AndroidManifest.xml 中声明这个广播
wear/AndroidManifes.xml
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<receiver android:name=".MyBroadcast">
<intent-filter>
<action android:name="it.gmariotti.receiver.intent.action.TEST"/>
</intent-filter>
</receiver>
然后实现Broadcast发送消息:
public class MyBroadcast extends BroadcastReceiver implements GoogleApiClient.ConnectionCallbacks, GoogleApiClient.OnConnectionFailedListener {
Node mNode; // the connected device to send the message to
GoogleApiClient mGoogleApiClient;
private static final String WEAR_PATH = "/hello-world-wear";
@Override
public void onReceive(Context context, Intent intent) {
//Connect the GoogleApiClient
mGoogleApiClient = new GoogleApiClient.Builder(context)
.addApi(Wearable.API)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build();
mGoogleApiClient.connect();
}
/**
* Send message to mobile handheld
*/
private void sendMessage() {
if (mNode != null && mGoogleApiClient!=null && mGoogleApiClient.isConnected()) {
Wearable.MessageApi.sendMessage(
mGoogleApiClient, mNode.getId(), WEAR_PATH, null).setResultCallback(
new ResultCallback<MessageApi.SendMessageResult>() {
@Override
public void onResult(MessageApi.SendMessageResult sendMessageResult) {
if (!sendMessageResult.getStatus().isSuccess()) {
Log.e("TAG", "Failed to send message with status code: "
+ sendMessageResult.getStatus().getStatusCode());
}
}
}
);
}else{
//Improve your code
}
}
/*
* Resolve the node = the connected device to send the message to
*/
private void resolveNode() {
Wearable.NodeApi.getConnectedNodes(mGoogleApiClient).setResultCallback(new ResultCallback<NodeApi.GetConnectedNodesResult>() {
@Override
public void onResult(NodeApi.GetConnectedNodesResult nodes) {
for (Node node : nodes.getNodes()) {
mNode = node;
}
sendMessage();
}
});
}
@Override
public void onConnected(Bundle bundle) {
resolveNode();
}
@Override
public void onConnectionSuspended(int i) {
//Improve your code
}
@Override
public void onConnectionFailed(ConnectionResult connectionResult) {
//Improve your code
}
}
此代码将向您的手机发送一条消息。 它需要在你的 wear/build.gradle
dependencies {
compile "com.google.android.support:wearable:1.0.+"
compile 'com.google.android.gms:play-services-wearable:+'
}
在 **Mobile 模块上你必须实现 WearableListenerService**
/**
* @author Gabriele Mariotti (gabri.mariotti@gmail.com)
*/
public class ListenerServiceFromWear extends WearableListenerService {
private static final String WEAR_PATH = "/hello-world-wear";
@Override
public void onMessageReceived(MessageEvent messageEvent) {
/*
* Receive the message from wear
*/
if (messageEvent.getPath().equals(WEAR_PATH)) {
Intent startIntent = new Intent(this, MainActivity.class);
startIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(startIntent);
}
}
}
它需要在您的 Mobile/AndroidManifest.xml 中声明服务。
<service android:name=".ListenerServiceFromWear">
<intent-filter>
<action android:name="com.google.android.gms.wearable.BIND_LISTENER" />
</intent-filter>
</service>
还有这个 mobile/build.gradle 依赖:
dependencies {
wearApp project(':wear')
compile 'com.google.android.gms:play-services-wearable:+'
}
【讨论】:
WearableListenerService?我不确定这一点。
我刚刚测试过并且有效的解决方案是在 Android 应用程序上添加一个消息侦听器,然后简单地从可穿戴设备发送我想要它执行的操作的详细信息。
public class WearMessagesAPI_Service
extends WearableListenerService {
private static final String OPEN_APP_PATH = "/OpenApp";
@Override
public void onMessageReceived(MessageEvent event) {
Log.w("WearMessagesAPI_Service", event.getPath());
String activityKey = new String(event.getData());
if(activityKey.equals(...)) {
Intent myAppIntent = ... create intent ...
startActivity(myAppIntent);
}
}
}
不要忘记将其添加到您的清单中:
<service android:name=".wearable.WearMessagesAPI_Service">
<intent-filter>
<action android:name="com.google.android.gms.wearable.BIND_LISTENER"/>
</intent-filter>
</service>
我相信就是这样。 让我知道进展如何:)
【讨论】:
activityKey.equals(...)