0

我需要一些帮助,我的 Android Wear 与消息 api 一起工作,但我一直在发送一些命令,这是我的监听器。

import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.hardware.Camera;
import android.widget.ImageButton;
import android.widget.Toast;

import com.google.android.gms.wearable.MessageEvent;
import com.google.android.gms.wearable.WearableListenerService;
public class ListenerServiceFromWear extends WearableListenerService {
    private static final String HELLO_WORLD_WEAR_PATH = "/hello-world-wear" ;
    public void onMessageReceived(MessageEvent messageEvent) {
        if (messageEvent.getPath().equals(HELLO_WORLD_WEAR_PATH)) {
            // Toast.makeText(getApplicationContext(),
            //        "Button is clicked", Toast.LENGTH_LONG).show() ;
            Intent startIntent = new Intent(this, MainActivity.class) ;
            // startIntent.putExtra("name",0);
            startIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK) ;
            startActivity(startIntent) ;

        }
        else {
            // android.os.Process.killProcess(android.os.Process.myPid());
        }
    }
}

我想在我的代码上调用我手机的方法我可以初始化手机类,但之后我不能调用更多的方法,比如:on | 离开。如何调用 MainActivity 类的方法?

我也尝试终止该进程,但 Wear 设备必须关闭并重新打开才能响应。

4

1 回答 1

2

看看这个 ;) 为 Wear 找到的最好的东西

https://github.com/Mariuxtheone/Teleport

于 2015-03-09T03:06:48.477 回答