public showAd() : void{
//
dialogController: CustomDialogController = new CustomDialogController({
builder: InterstitialAdDialog({
}),autoCancel: false,alignment: DialogAlignment.Center
});
dialogController.open();
}
在class中使用方法来调用dialog,会报错Cannot assign to ‘CustomDialogController’ because it is a class.class中是不能启动dialog吗,那dialog的广告要怎么进行展示呢?
CustomDialogController 不能脱离 @Component 初始化,如果想要抽离 @CustomDialog,可以参考这:https://developer.huawei.com/consumer/cn/forum/topic/02021397...