当前位置:首页 > 搜索 "鸿蒙"

鸿蒙next自定义弹窗

dsttl33个月前 (06-01)507
自定义弹窗组件MyDialog@CustomDialogexportstructMyDialog{title?:stringcancelBtnText?:stringconfirmBtnText?:stringmessage?:stringcancel......

鸿蒙next长按事件

dsttl34个月前 (05-25)484
import{promptAction}from'@kit.ArkUI';@Entry@ComponentstructButtonExample{@Statemessage:string='Button';buil......

鸿蒙next申请权限

dsttl34个月前 (05-24)332
写在入口UIAbility里面PERMISSIONS:Array<Permissions>=['ohos.permission.READ_MEDIA','ohos.permission.WRITE_MEDIA'];onCreate(......

鸿蒙next应用全屏设置

dsttl34个月前 (05-22)517
首先,需要判断设备类型,避免PC上无法窗口化运行这个判断需要在UIAbility中的onWindowStageCreate()方法内/***判断是否是手机设备,如果是手机设备,则设置全屏(注:2in1设备设置全屏后无法窗口化运行)*/if(deviceIn......

鸿蒙next保存图片、视频组件

dsttl34个月前 (05-21)462
pageimportphotoAccessHelperfrom'@ohos.file.photoAccessHelper';importfsfrom'@ohos.file.fs';importcommonfrom'@ohos.......

鸿蒙next获取软件版本号

dsttl34个月前 (05-20)435
获取软件版本号工具类import{bundleManager}from'@kit.AbilityKit';exportfunctiongetVersionName():string{letbundleFlags=bundleManager.B......