arkts-ui-widget-event-call.md 4.4 KB
Newer Older
W
wangkailong 已提交
1 2 3
# 使用call事件拉起指定UIAbility到后台


W
wangkailong 已提交
4
许多应用希望借助卡片的能力,实现和应用在前台时相同的功能。例如音乐卡片,卡片上提供播放、暂停等按钮,点击不同按钮将触发音乐应用的不同功能,进而提高用户的体验。在卡片中使用**postCardAction**接口的call能力,能够将卡片提供方应用的指定的UIAbility拉到后台。同时,call能力提供了调用应用指定方法、传递数据的功能,使应用在后台运行时可以通过卡片上的按钮执行不同的功能。
W
wangkailong 已提交
5 6


D
dujingcheng 已提交
7
说明:<br/>  本文主要介绍动态卡片的事件开发。对于静态卡片,请参见[FormLink](../../application-dev/reference/arkui-ts/ts-container-formlink.md)<br/>
W
wangkailong 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
通常使用按钮控件来触发call事件,示例代码如下:


- 在卡片页面中布局两个按钮,点击其中一个按钮时调用postCardAction向指定UIAbility发送call事件,并在事件内定义需要调用的方法和传递的数据。需要注意的是,method参数为必选参数,且类型需要为string类型,用于触发UIAbility中对应的方法。
  
  ```ts
  @Entry
  @Component
  struct WidgetCard {
    build() {
      Column() {
        Button('功能A')
          .margin('20%')
          .onClick(() => {
            console.info('call EntryAbility funA');
            postCardAction(this, {
              'action': 'call',
              'abilityName': 'EntryAbility', // 只能跳转到当前应用下的UIAbility
              'params': {
                'method': 'funA' // 在EntryAbility中调用的方法名
              }
            });
          })
  
        Button('功能B')
          .margin('20%')
          .onClick(() => {
            console.info('call EntryAbility funB');
            postCardAction(this, {
              'action': 'call',
              'abilityName': 'EntryAbility', // 只能跳转到当前应用下的UIAbility
              'params': {
                'method': 'funB', // 在EntryAbility中调用的方法名
                'num': 1 // 需要传递的其他参数
              }
            });
          })
      }
      .width('100%')
      .height('100%')
    }
  }
  ```

W
form  
wangkailong 已提交
52
- 在UIAbility中接收call事件并获取参数,根据传递的method不同,执行不同的方法。其余数据可以通过[readString](../reference/apis/js-apis-rpc.md#readstring)方法获取。需要注意的是,UIAbility需要onCreate生命周期中监听所需的方法。
W
wangkailong 已提交
53 54 55
  
  ```ts
  import UIAbility from '@ohos.app.ability.UIAbility';
X
xuzhihao 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
  import Base from '@ohos.base'
  import rpc from '@ohos.rpc';
  import Want from '@ohos.app.ability.Want';
  import AbilityConstant from '@ohos.app.ability.AbilityConstant';


  class MyParcelable implements rpc.Parcelable {
    num: number;
    str: string;
    constructor(num: number, str: string) {
      this.num = num;
      this.str = str;
    }
    marshalling(messageSequence: rpc.MessageSequence): boolean {
      messageSequence.writeInt(this.num);
      messageSequence.writeString(this.str);
      return true;
    }
    unmarshalling(messageSequence: rpc.MessageSequence): boolean {
      this.num = messageSequence.readInt();
      this.str = messageSequence.readString();
      return true;
    }
W
wangkailong 已提交
79 80 81 82
  }
  
  export default class CameraAbility extends UIAbility {
    // 如果UIAbility第一次启动,在收到call事件后会触发onCreate生命周期回调
X
xuzhihao 已提交
83
    onCreate(want: Want, launchParam: AbilityConstant.LaunchParam) {
84 85
      try {
        // 监听call事件所需的方法
X
xuzhihao 已提交
86 87 88 89 90 91 92 93 94 95
        this.callee.on('funA', (data: rpc.MessageSequence) => {
          // 获取call事件中传递的所有参数
          console.info('FunACall param:' + JSON.stringify(data.readString()));
          return new MyParcelable(1, 'aaa');
        });
        this.callee.on('funB', (data: rpc.MessageSequence) => {
          // 获取call事件中传递的所有参数
          console.info('FunACall param:' + JSON.stringify(data.readString()));
          return new MyParcelable(2, 'bbb');
        });
Z
zhongjianfei 已提交
96
      } catch (err) {
X
xuzhihao 已提交
97
        console.error(`Failed to register callee on. Cause: ${JSON.stringify(err as Base.BusinessError)}`);
98
      }
W
wangkailong 已提交
99
    }
100
  
Z
zhongjianfei 已提交
101 102
    ...
  
W
wangkailong 已提交
103 104
    // 进程退出时,解除监听
    onDestroy() {
105 106 107
      try {
        this.callee.off('funA');
        this.callee.off('funB');
zyjhandsome's avatar
zyjhandsome 已提交
108
      } catch (err) {
X
xuzhihao 已提交
109
        console.error(`Failed to register callee off. Cause: ${JSON.stringify(err as Base.BusinessError)}`);
110
      }
W
wangkailong 已提交
111 112 113
    }
  };
  ```