如何获取窗口的宽高信息?

如何获取窗口的宽高信息

阅读 152
1 个回答

解决措施

获取指定窗口对象Window后,在该对象上使用getWindowProperties()获取窗口各个属性,在属性windowRect中获取窗口宽高信息。

代码示例

import { window } from '@kit.ArkUI'; 
import { BusinessError } from '@kit.BasicServicesKit' 
 
let windowClass: window.Window | undefined = undefined; 
try { 
  let promise = window.getLastWindow(this.context); 
  promise.then((data)=> { 
    //获取窗口对象 
    windowClass = data; 
    try { 
      //获取窗口属性 
      let properties = windowClass.getWindowProperties(); 
      let rect = properties.windowRect; 
      //rect.width: 窗口宽度;rect.height: 窗口高度 
    } catch (exception) { 
      console.error('Failed to obtain the window properties. Cause: ' + JSON.stringify(exception)); 
    } 
    console.info('Succeeded in obtaining the top window. Data: ' + JSON.stringify(data)); 
  }).catch((err: BusinessError)=>{ 
    console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(err)); 
  });} catch (exception) { 
  console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(exception)); 
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题