为服务卡片的组件单独添加点击事件(Java)
Java卡片通过componentProvider.setIntentAgent方法设置点击事件。封装IntentAgentInfo时,第一个参数“200”是绑定组件的resultcode,当需要设置卡片上多个组件的点击事件时,设置不同的resultcode即可。
IntentAgentInfo paramsInfo = new IntentAgentInfo(200, IntentAgentConstant.OperationType.START_ABILITY, flags, intentList, null);
创建多规格的服务卡片(Java)
在config.json文件中的forms节点配置多个卡片对象即可。
JS服务卡片代码示例如下:
JAVA服务卡片代码示例如下:
原作者:HarmonyOS Developer
|