如何获取窗口的宽度?

如何获取窗口的宽度?

阅读 271
1 个回答

可以通过getWindowProperties这个接口获取窗口属性,窗口属性的windowRect是窗口的尺寸。

import window from '@ohos.window';   
   
//获取窗口对象   
let windowClass = await window.getLastWindow(getContext());   
//获取窗口属性   
let properties = windowClass.getWindowProperties();   
//获取窗口宽高   
console.log("width: "+ properties.windowRect.width);   
console.log("height: "+ properties.windowRect.height);

参考链接

窗口属性

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题