HarmonyOS 鸿蒙Next XComponent如何实现单击按钮4分屏

发布于 1周前 作者 zlyuanteng 来自 鸿蒙OS

HarmonyOS 鸿蒙Next XComponent如何实现单击按钮4分屏
找HarmonyOS工作还需要会Flutter的哦,有需要Flutter教程的可以学学大地老师的教程,很不错,B站免费学的哦:https://www.bilibili.com/video/BV1S4411E7LY/?p=17

关于HarmonyOS 鸿蒙Next XComponent如何实现单击按钮4分屏的问题,您也可以访问:https://www.itying.com/category-93-b0.html 联系官网客服。

1 回复
  1. XComponent({
  2. id: 'xComponentId',
  3. type: XComponentType.SURFACE,
  4. libraryname: 'nativerender',
  5. controller: this.myXComponentController
  6. })
  7. .width(this.xc_width)
  8. .height(this.xc_height)
  9. .onLoad(() => {
  10. let surfaceRotation: SurfaceRotationOptions = { lock: this.isLock };
  11. this.myXComponentController.setXComponentSurfaceRotation(surfaceRotation);
  12. console.log("Surface getXComponentSurfaceRotation lock = " +
  13. this.myXComponentController.getXComponentSurfaceRotation().lock);
  14. })
  15. <Button>四分屏</Button>
回到顶部