harmony 鸿蒙@ohos.brightness (屏幕亮度)
@ohos.brightness (屏幕亮度)
该模块提供屏幕亮度的设置接口。
说明:
本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
本模块接口为系统接口。
导入模块
import brightness from '@ohos.brightness';
brightness.setValue
setValue(value: number): void
设置系统的屏幕亮度。
系统接口: 此接口为系统接口。
系统能力: SystemCapability.PowerManager.DisplayPowerManager
参数:
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
value | number | 是 | 亮度的值。范围:0~255。 |
错误码:
以下错误码的详细介绍请参见屏幕亮度错误码。
错误码ID | 错误信息 |
---|---|
4700101 | If connecting to the service failed. |
示例:
try {
brightness.setValue(128);
} catch(err) {
console.error('set brightness failed, err: ' + err);
}
brightness.setValue11+
setValue(value: number, continuous: boolean): void
设置系统的屏幕亮度。用于连续调节亮度的场景,在连续调节亮度过程中,设置continuous为true,结束时设置continuous为false,会有更好的性能。
系统接口: 此接口为系统接口。
系统能力: SystemCapability.PowerManager.DisplayPowerManager
参数:
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
value | number | 是 | 亮度的值。范围:0~255。 |
continuous | boolean | 是 | 亮度调节是否连续 |
错误码:
以下错误码的详细介绍请参见屏幕亮度错误码。
错误码ID | 错误信息 |
---|---|
4700101 | If connecting to the service failed. |
示例:
try {
brightness.setValue(128, true);
} catch(err) {
console.error('set brightness failed, err: ' + err);
}
你可能感兴趣的鸿蒙文章
harmony 鸿蒙BundleStatusCallback
harmony 鸿蒙@ohos.bundle.innerBundleManager (innerBundleManager模块)
harmony 鸿蒙@ohos.distributedBundle (分布式包管理)
harmony 鸿蒙@ohos.bundle (Bundle模块)
harmony 鸿蒙@ohos.enterprise.EnterpriseAdminExtensionAbility (企业设备管理扩展能力)
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦