我正在尝试构建一个内置意图[actions.intent.CHECK_AIR_QUALITY]。我已经在我的项目中添加了 actions.xml。这是代码:
<?xml version ="1.0" encoding ="utf-8"?><!-- Learn More about how to use
App Actions: https://developer.android.com/guide/actions/index.html -->
<actions>
<!--Example Action -->
<action intentName="actions.intent.CHECK_AIR_QUALITY">
<action-display
label="Check quality"
/>
<fulfillment urlTemplate="https://www.google.co.in/order{?drop}">
<parameter-mapping
intentParameter="drop"
urlParameter="drop" />
</fulfillment>
</action>
</actions>
在这里,我在urlTemplate的位置放置了一个示例 url 。但是在我的设备中安装应用程序后,以下选项(应用程序操作测试工具)没有出现。这是我截取屏幕截图的视频链接。
因此,我对此进行了研发,并找到了一些用于 google codelabs对话操作的链接。
如果您需要更多信息,请告诉我。