我一直在阅读有关可穿戴设备sdk的信息,以及它现在和将来可以做些什么.
我的问题是,用户是否可以按下手表上的某些内容来提醒我的应用程序在智能手机上的某些内容,或者用户是否必须对手表说话或从我的应用程序接收通知以与我的智能手机应用程序进行交互?
谢谢
解决方法:
你将能够有“行动”,所以是的.例如,Gmail应用的其中一项 *** 作就是您可以在手机上d出“回复”,“全部回复”等.
根据Android Wear开发者网站的说法,以下代码段将在您的掌上电脑设备上启动一个意图:
//构建查看地图的 *** 作意图
Intent mAPIntent = new Intent(Intent.ACTION_VIEW);
Uri geoUri = Uri.parse(“geo:0,0?q =”Uri.encode(location));
mAPIntent.setData(geoUri);
PendingIntent mapPendingIntent =
PendingIntent.getActivity(this,0,mAPIntent,0);
NotificationCompat.Builder notificationBuilder =
新NotificationCompat.Builder(this)
.setSmallicon(R.drawable.ic_event)
.setContentTitle(EVENTTitle)
.setContentText(eventLocation)
.setContentIntent(vIEwPendingIntent)
.addAction(R.drawable.ic_map,
getString(R.string.map),mapPendingIntent);
有关详细信息,请参阅:http://developer.android.com/wear/notifications/creating.html.请参阅“添加 *** 作按钮”一节
总结以上是内存溢出为你收集整理的这可以通过Android wearable sdk实现全部内容,希望文章能够帮你解决这可以通过Android wearable sdk实现所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)