使用router事件跳轉(zhuǎn)到指定UIAbility

2024-01-25 12:20 更新

在卡片中使用postCardAction接口的router能力,能夠快速拉起卡片提供方應(yīng)用的指定UIAbility,因此UIAbility較多的應(yīng)用往往會(huì)通過(guò)卡片提供不同的跳轉(zhuǎn)按鈕,實(shí)現(xiàn)一鍵直達(dá)的效果。例如相機(jī)卡片,卡片上提供拍照、錄像等按鈕,點(diǎn)擊不同按鈕將拉起相機(jī)應(yīng)用的不同UIAbility,從而提升用戶(hù)的體驗(yàn)。

通常使用按鈕控件來(lái)實(shí)現(xiàn)頁(yè)面拉起,示例代碼如下:

  • 在卡片頁(yè)面中布局兩個(gè)按鈕,點(diǎn)擊其中一個(gè)按鈕時(shí)調(diào)用postCardAction向指定UIAbility發(fā)送router事件,并在事件內(nèi)定義需要傳遞的內(nèi)容。
    1. @Entry
    2. @Component
    3. struct WidgetCard {
    4. build() {
    5. Column() {
    6. Button('功能A')
    7. .margin('20%')
    8. .onClick(() => {
    9. console.info('Jump to EntryAbility funA');
    10. postCardAction(this, {
    11. 'action': 'router',
    12. 'abilityName': 'EntryAbility', // 只能跳轉(zhuǎn)到當(dāng)前應(yīng)用下的UIAbility
    13. 'params': {
    14. 'targetPage': 'funA' // 在EntryAbility中處理這個(gè)信息
    15. }
    16. });
    17. })
    18. Button('功能B')
    19. .margin('20%')
    20. .onClick(() => {
    21. console.info('Jump to EntryAbility funB');
    22. postCardAction(this, {
    23. 'action': 'router',
    24. 'abilityName': 'EntryAbility', // 只能跳轉(zhuǎn)到當(dāng)前應(yīng)用下的UIAbility
    25. 'params': {
    26. 'targetPage': 'funB' // 在EntryAbility中處理這個(gè)信息
    27. }
    28. });
    29. })
    30. }
    31. .width('100%')
    32. .height('100%')
    33. }
    34. }
  • 在UIAbility中接收router事件并獲取參數(shù),根據(jù)傳遞的params不同,選擇拉起不同的頁(yè)面。
    1. import UIAbility from '@ohos.app.ability.UIAbility';
    2. import window from '@ohos.window';
    3. let selectPage = "";
    4. let currentWindowStage = null;
    5. export default class CameraAbility extends UIAbility {
    6. // 如果UIAbility第一次啟動(dòng),在收到Router事件后會(huì)觸發(fā)onCreate生命周期回調(diào)
    7. onCreate(want, launchParam) {
    8. // 獲取router事件中傳遞的targetPage參數(shù)
    9. console.info("onCreate want:" + JSON.stringify(want));
    10. if (want.parameters.params !== undefined) {
    11. let params = JSON.parse(want.parameters.params);
    12. console.info("onCreate router targetPage:" + params.targetPage);
    13. selectPage = params.targetPage;
    14. }
    15. }
    16. // 如果UIAbility已在后臺(tái)運(yùn)行,在收到Router事件后會(huì)觸發(fā)onNewWant生命周期回調(diào)
    17. onNewWant(want, launchParam) {
    18. console.info("onNewWant want:" + JSON.stringify(want));
    19. if (want.parameters.params !== undefined) {
    20. let params = JSON.parse(want.parameters.params);
    21. console.info("onNewWant router targetPage:" + params.targetPage);
    22. selectPage = params.targetPage;
    23. }
    24. if (currentWindowStage != null) {
    25. this.onWindowStageCreate(currentWindowStage);
    26. }
    27. }
    28. onWindowStageCreate(windowStage: window.WindowStage) {
    29. let targetPage;
    30. // 根據(jù)傳遞的targetPage不同,選擇拉起不同的頁(yè)面
    31. switch (selectPage) {
    32. case 'funA':
    33. targetPage = 'pages/FunA';
    34. break;
    35. case 'funB':
    36. targetPage = 'pages/FunB';
    37. break;
    38. default:
    39. targetPage = 'pages/Index';
    40. }
    41. if (currentWindowStage === null) {
    42. currentWindowStage = windowStage;
    43. }
    44. windowStage.loadContent(targetPage, (err, data) => {
    45. if (err && err.code) {
    46. console.info('Failed to load the content. Cause: %{public}s', JSON.stringify(err));
    47. return;
    48. }
    49. });
    50. }
    51. };
以上內(nèi)容是否對(duì)您有幫助:
在線(xiàn)筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)