中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
手机屏幕宽度怎么获取,并且定义成一个常量。
微信扫码分享
// 1、导入文件 import display from '@ohos.display' // 2、获取相关信息,宽高 aboutToAppear(): void { display.getAllDisplays((err, data) => { let screenWidth : number = data[0].width let screenHeight : number = data[0].height console.log('width = ' + screenWidth + 'height = ' + screenHeight) console.log('width + height = ' + JSON.stringify(data)) }) } //3、对于设备屏幕宽高常量定义,基本上都是100% // 宽 static readonly FULL_WIDTH: string = '100%'; // 高 static readonly FULL_HEIGHT: string = '100%';