Google glass GDK

Glass拨打电话和Android是不一样的,今天搜索了一番,测试成功

1 Intent intent = new Intent();
2 intent.putExtra("com.google.glass.extra.PHONE_NUMBER", "+8618666666666");
3 intent.setAction("com.google.glass.action.CALL_DIAL");
4 sendBroadcast(intent);

需要注意的就是号码前面+86(For China)

原文地址:https://www.cnblogs.com/ch3rry/p/3871175.html