Grid组件如何实现高度自适应
计算展示的行数rowCount,根据rowCount得出GridHeight、GridRowsTemplate参考代码getCategoryRowCount(){returnMath.ceil(this.categories.length2);}getCategoryRowTmpl(){constcountthis.getCategoryRowCount();constarr:string[]newArray(count1).fill('1fr');console.log('tmpl',arr.join(''))returnarr.join('');}getCategoryViewHeight(){return${130this.getCategoryRowCount()}vp;}Grid(){}.height(this.getCategoryViewHeight()).columnsTemplate('1fr1fr').rowsTemplate(this.getCategoryRowTmpl())
如何固定应用窗口大小并居中展示
参考ohos.window(窗口),使用moveWindowTo可以移动窗口。固定窗口参考moudle.json5设置maxWindowWidth,minWindowWidth,maxWindowHeight,minWindowHeight,supportWindowMode字段。
如何将容器定位到屏幕的最底部
可以使用Stack堆叠容器,设置子组件在容器内的最底部。参考代码EntryComponentstructindex{build(){Stack({alignContent:Alignment.Bottom}){容器位于最底部Stack(){Column().width('100%').height('100%').backgroundColor(Color.Yellow)}.width('100%').height('10%')}.width('100%').height('100%').backgroundColor('rgba(255,255,255,0)')}}
修改页面状态栏颜色,以及沉浸式状态属性设置
参考代码onWindowStageCreate(windowStage:window.WindowStage):void{windowStage.getMainWindow((err,data)>{if(err.code){return}GlobalThis.getInstance().setObject("mainWindow",data);设置全屏展示,沉浸式data.setWindowLayoutFullScreen(true);letsysBarProps{statusBarColor:'00000000',navigationBarColor:'00000000',以下两个属性从APIVersion8开始支持A03d00JSAPPstatusBarContentColor:'2B3141',navigationBarCont...
如何解决退到后台再点击图标会重新拉起MainAbility实例
可以指定UIAbility的启动方式launchType为specified,该UIAbility内部可根据业务自己置顶多实例。{"module":{..."abilities":[{"launchType":"specified",...}]}}详细内容可以参考文档:UIAbility组件启动模式。
如何判断已安装应用是否可卸载
通过getApplicationInfo获取applicationInfo应用信息,然后根据removable属性判断当前应用是否可以被卸载。
如何区分页面可见无焦点和页面可见有焦点
在onWindowStageCreate()回调中通过WindowStage.loadContent()方法设置应用要加载的页面,并根据需要调用WindowStage.on(‘windowStageEvent’)方法订阅WindowStage的事件(获焦失焦、可见不可见)即可。