gpt4 book ai didi

android - Android wearable sdk可以吗

转载 作者:太空宇宙 更新时间:2023-11-03 10:20:49 25 4
gpt4 key购买 nike

我一直在阅读有关可穿戴设备 SDK 以及它现在和将来可以做什么的信息。

我的问题是,用户是否能够通过在 watch 上按下某些按钮来提醒我的应用注意智能手机上的某些东西,或者用户是否必须对着 watch 说话或从我的应用接收通知才能与我的智能手机应用进行交互?

谢谢

最佳答案

你将能够有“行动”,所以是的。例如,Gmail 应用程序的其中一项操作是您可以“回复”、“回复全部”等,这些操作会在您的手机上弹出。

根据 Android Wear 开发者网站,以下代码 fragment 将在您的手持设备上启动一个 Intent: //为查看 map 的操作构建 Intent 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(这个) .setSmallIcon(R.drawable.ic_event) .setContentTitle(事件标题) .setContentText(事件位置) .setContentIntent(viewPendingIntent) .addAction(R.drawable.ic_map, getString(R.string.map), mapPendingIntent);

参见:http://developer.android.com/wear/notifications/creating.html获取更多信息。请参阅名为“添加操作按钮”的部分

关于android - Android wearable sdk可以吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22569000/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com