#鸿蒙通关秘籍#在查找代码时,DevEco Studio是否支持我即时导航到符号、类或文件?

HarmonyOS
2024-12-06 15:15:55
617浏览
收藏 0
回答 1
回答 1
按赞同
/
按时间
墨雨尘OS

支持!DevEco Studio支持即时导航到符号、类或文件,方便你快速定位和查看代码。 你可以通过 Ctrl + F 来实现查阅代码,Shift/Ctrl + [点击] [符号、类] 实现快速定位。

import { `AbilityConstant`, `ConfigurationConstant`, `UIAbility`, `Want`, } from '@kit.AbilityKit';
import { `hilog` } from '@kit.PerformanceAnalysisKit';
import { `window` } from '@kit.ArkUI';
import wantConstant from '@ohos.ability.wantConstant';

export default class `EntryAbility` extends `UIAbility` {
    onCreate(`want`: `Want`, `launchParam`: `AbilityConstant`.LaunchParam): void {
        this.context.getApplicationContext().setColorMode(`ConfigurationConstant`.ColorMode.COLOR_MODE_NOT_SET);
        `hilog`.info(0x0000, 'testTag', '%{public}s', 'Ability onCreate');
    }

    //
    onDestroy(): void {
        `hilog`.info(0x0000, 'testTag', '%{public}s', 'Ability onDestroy');
    }

    onWindowStageCreate(`windowStage`: `window`.WindowStage): void {
        // Main window is created, set main page for this ability
        `hilog`.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageCreate');

        `windowStage`.loadContent('pages/Index', (err) => {
            if (err.code) {
                `hilog`.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? '');
                return;
            }
            `hilog`.info(0x0000, 'testTag', 'Succeeded in loading the content.');
        });
    }

    onWindowStageDestroy(): void {
        // Main window is destroyed, release UI related resources
        `hilog`.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageDestroy');
    }

    onForeground(): void {
        // Ability has brought to foreground
        `hilog`.info(0x0000, 'testTag', '%{public}s', 'Ability onForeground');
    }

    onBackground(): void {
        // Ability has back to background
        `hilog`.info(0x0000, 'testTag', '%{public}s', 'Ability onBackground');
    }
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 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.
分享
微博
QQ
微信
回复
2024-12-06 16:38:18


相关问题