codecamp

鸿蒙OS Ability Ability.WindowAttributeHelper

帮助您使用 Intent 设置当前应用程序的窗口属性。

此类将窗口的填充设置封装在 Intent 中,并且您无需关心数据的存储方式。

构造器摘要

建设者 描述
WindowAttributeHelper(Intent intentAttribute) 用于创建 WindowAttributeHelper 实例的参数化构造函数。

方法总结

修饰符和类型 方法 描述
Ability.WindowAttributeHelpe setBottomPadding(int 底部) 设置窗口的底部填充。
Ability.WindowAttributeHelper setLeftPadding(向左整数) 设置窗口的左填充。
Ability.WindowAttributeHelper setRightPadding(int 右) 设置窗口的右填充。
Ability.WindowAttributeHelper setTopPadding(int 顶部) 设置窗口的顶部填充。
从类 java.lang 继承的方法。object
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

构造器详细信息

窗口属性助手

public WindowAttributeHelper(Intent intentAttribute)

用于创建 WindowAttributeHelper 实例的参数化构造函数。

调用 WindowAttributeHelper 提供的设置方法后,实例中携带的 Intent 将自动存储属性设置。

参数:

参数名称 参数说明
intentAttribute 指示用于存储窗口属性的 Intent

方法细节

设置左填充

public Ability.WindowAttributeHelper setLeftPadding(int left)

设置窗口的左填充。

参数:

参数名称 参数说明
剩下 指示要设置的窗口的左填充(以像素为单位)

返回值:

返回具有指定左填充的 WindowAttributeHelper 对象。

设置上填充

public Ability.WindowAttributeHelper setTopPadding(int top)

设置窗口的顶部填充。

参数:

参数名称 参数说明
最佳 指示要设置的窗口的顶部填充,以像素为单位

返回值:

返回具有指定顶部填充的 WindowAttributeHelper 对象。

设置右填充

public Ability.WindowAttributeHelper setRightPadding(int right)

设置窗口的右填充。

参数:

参数名称 参数说明
指示要设置的窗口的右填充,以像素为单位

返回值:

返回具有指定右填充的 WindowAttributeHelper 对象。

设置底部填充

public Ability.WindowAttributeHelper setBottomPadding(int bottom)

设置窗口的底部填充。

参数:

参数名称 参数说明
底部 指示要设置的窗口的底部填充,以像素为单位。

返回值:

返回具有指定底部填充的 WindowAttributeHelper 对象。

鸿蒙OS Ability Ability.LayoutParamsHelper
鸿蒙OS Ability AbilityForm
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

鸿蒙OS 开发

鸿蒙OS 术语

鸿蒙OS Java API参考

鸿蒙OS ohos.aafwk.ability

鸿蒙OS ohos.aafwk.abilityjet.activedata

鸿蒙OS ohos.aafwk.content

鸿蒙OS java.lang

鸿蒙OS java.Util

鸿蒙OS java.Util class

鸿蒙OS ohos.data.dataability

鸿蒙OS ohos.data.dataability class

鸿蒙OS ohos.agp.components

鸿蒙OS ohos.agp.components interface

鸿蒙OS ohos.agp.components class

鸿蒙OS ohos.global.configuration

鸿蒙OS java.io

鸿蒙OS ohos.data.resultset

鸿蒙OS ohos.data.resultset interface

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }