• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (C) 2024 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15import { BusinessError } from '@kit.BasicServicesKit'
16import { Want } from '@kit.AbilityKit'
17
18@Entry
19@Component
20struct Index {
21  @State message: string = 'Message: '
22  private want: Want = {
23    bundleName: 'com.example.act_embeddeduiextension',
24    abilityName: 'EmbeddedUIExtAbility',
25    parameters: {}
26  }
27
28  build() {
29    Row() {
30      Column() {
31        Text(this.message).fontSize(30)
32        EmbeddedComponent(this.want, EmbeddedType.EMBEDDED_UI_EXTENSION)
33          .width('100%')
34          .height('90%')
35          .onTerminated((info: TerminationInfo) => {
36            this.message = 'Terminarion: code = ' + info.code + ', want = ' + JSON.stringify(info.want);
37            console.log('shuzi', JSON.stringify(EmbeddedType.EMBEDDED_UI_EXTENSION))
38          })
39          .onError((error: BusinessError) => {
40            this.message = 'Error: code = ' + error.code;
41          })
42      }
43      .width('100%')
44    }
45    .height('100%')
46  }
47}