火影 发表于 2024-11-2 09:22:25

HarmonyOS NEXT常见应用及场景Want

拉起设置相干应用

let want: Want = {
   bundleName: 'com.huawei.hmos.settings',
   abilityName: 'com.huawei.hmos.settings.MainAbility',
};
拉起设置的WLAN界面

let want: Want = {
   bundleName: 'com.huawei.hmos.settings',
   abilityName: 'com.huawei.hmos.settings.MainAbility',
   uri: 'wifi_entry'
};
拉起设置应用的蓝牙界面

let want: Want = {
   bundleName: 'com.huawei.hmos.settings',
   abilityName: 'com.huawei.hmos.settings.MainAbility',
   uri: 'bluetooth_entry'
};
拉起设置应用的移动网络界面(仅对手机设备开放)

let want: Want = {
   bundleName: 'com.huawei.hmos.settings',
   abilityName: 'com.huawei.hmos.settings.MainAbility',
   uri: 'mobile_network_entry',
}; 更多界面:
界面uri备注设置应用的移动网络>个人热点hotspot_data_settings仅对手机设备开放设置应用的移动网络>个人热点>暗码password_entry仅对手机设备开放设置应用的移动网络>个人热点>已毗连设备connected_device_entry仅对手机设备开放设置应用的移动网络>个人热点>更多共享设置more_share_entry仅对手机设备开放
拉起设置应用的更多毗连界面

let want: Want = {
   bundleName: 'com.huawei.hmos.settings',
   abilityName: 'com.huawei.hmos.settings.MainAbility',
   uri: 'more_connections_settings'
};
拉起设置应用的声音和振动界面

let want: Want = {
   bundleName: 'com.huawei.hmos.settings',
   abilityName: 'com.huawei.hmos.settings.MainAbility',
   uri: 'volume_settings',
};
拉起设置应用的应用详情界面

let want: Want = {
   bundleName: 'com.huawei.hmos.settings',
   abilityName: 'com.huawei.hmos.settings.MainAbility',
   uri: 'application_info_entry',
   parameters: {
       pushParams: 'com.example.myapplication', // 待拉起的应用详情界面
 }
};
拉起设置应用的生物识别和暗码界面

let want: Want = {
   bundleName: 'com.huawei.hmos.settings',
   abilityName: 'com.huawei.hmos.settings.MainAbility',
   uri: 'biometrics_and_password_settings'
}; 更多界面:
界面uri备注设置应用的生物识别和暗码>指纹fingerprint_settings_entry-设置应用的生物识别和暗码>指纹>新建指纹fingerprint_screen_intro_entry有点题目??设置应用的生物识别和暗码>锁屏暗码lock_screen_password_title-设置应用的生物识别和暗码>锁屏暗码(其他暗码范例)>自界说数字暗码(设置锁屏数字暗码)change_six_to_number_entry-设置应用的生物识别和暗码>锁屏暗码(其他暗码范例)>混淆暗码(设置锁屏暗码)change_six_to_mixed_entry-设置应用的生物识别和暗码>关闭锁屏暗码(输入锁屏暗码)check_psd_entry-
拉起设置应用的辅助功能界面(仅对手机设备开放)

let want: Want = {
    bundleName: 'com.huawei.hmos.settings',
    abilityName: 'com.huawei.hmos.settings.MainAbility',
    uri: 'accessibility_feature',
};
拉起设置应用的应用和元服务界面

let want: Want = {
    bundleName: 'com.huawei.hmos.settings',
    abilityName: 'com.huawei.hmos.settings.MainAbility',
    uri: 'application_and_service_settings'
}; 更多界面:
界面uri备注设置应用的应用和元服务>应用管理>详细应用application_settings-
拉起设置应用的存储界面

let want: Want = {
    bundleName: 'com.huawei.hmos.settings',
    abilityName: 'com.huawei.hmos.settings.MainAbility',
    uri: 'storage_settings'
};
拉起设置应用的隐私和安全界面

let want: Want = {
    bundleName: 'com.huawei.hmos.settings',
    abilityName: 'com.huawei.hmos.settings.MainAbility',
    uri: 'privacy_settings'
}; 更多界面:
界面uri备注设置应用的隐私和安全>位置信息location_manager_settings-设置应用的隐私和安全>位置信息>定位服务>资助location_help_entry-
拉起设置应用的显示和亮度界面

let want: Want = {
    bundleName: 'com.huawei.hmos.settings',
    abilityName: 'com.huawei.hmos.settings.MainAbility',
    uri: 'display_settings'
}; 更多界面:
界面uri备注设置应用的显示和亮度>显示大小screen_zoom-设置应用的显示和亮度>屏幕刷新率screen_refresh_rate_entry-
拉起设置应用的用户和帐户界面(仅对手机设备开放)

let want: Want = {
    bundleName: 'com.huawei.hmos.settings',
    abilityName: 'com.huawei.hmos.settings.MainAbility',
    uri: 'users_accounts',
}; 更多界面:
界面uri备注设置应用的用户和帐户>用户界面current_user仅对手机设备开放
拉起设置应用的系统和更新界面(仅对手机设备开放)

let want: Want = {
    bundleName: 'com.huawei.hmos.settings',
    abilityName: 'com.huawei.hmos.settings.MainAbility',
    uri: 'system_and_updates',
}; 更多界面:
界面uri备注设置应用的系统和更新>语言和地域set_language-设置应用的系统和更新>语言和地域>语言和地域set_language_region-设置应用的系统和更新>语言和地域>语言和地域>编辑语言edit_language_entry设置应用的系统和更新>语言和地域>语言和地域>添加语言add_language_entry设置应用的系统和更新>语言和地域>语言和地域>选择地域select_region_entry设置应用的系统和更新>日期和时间date_and_time-设置应用的系统和更新>日期和时间>时区time_zone_settings-设置应用的系统和更新>重置reset_settings-设置应用的系统和更新>重置>还原网络设置reset_net_settings设置应用的系统和更新>重置>恢复出厂设置reset_factory_settings设置应用的系统和更新>重置>恢复出厂设置>重置手机reset_factory_button有点题目??设置应用的系统和更新>开辟人员选项developer_options_settings-
拉起设置应用的关于本机界面

let want: Want = {
    bundleName: 'com.huawei.hmos.settings',
    abilityName: 'com.huawei.hmos.settings.MainAbility',
    uri: 'about_device'
};
拉起欣赏器应用

let want: Want = {
    action: 'ohos.want.action.viewData',
    entities: ['entity.system.browsable'],
    uri: 'https://www.baidu.com/'
};
拉起应用市场界面

let want: Want = {
    bundleName: 'com.huawei.hmos.appgallery',
    abilityName: 'MainAbility'
};
拉起应用市场对应的应用详情界面

let want: Want = {
    action: 'ohos.want.action.appdetail',
    uri: 'store://appgallery.huawei.com',
    type: 'text/text',
    parameters: {
      id: `<appId>` // 要拉起的详情页面应用的appId
    }
};
拉起权限管理应用相干UIAbility

拉起权限管理界面(显式调用+权限管控)

   拉起方需要申请ohos.permission.GRANT_SENSITIVE_PERMISSIONS权限。
let want: Want = {
    bundleName: 'com.ohos.permissionmanager',
    abilityName: 'com.ohos.permissionmanager.MainAbility',
};
拉起权限管理的指定应用界面(权限管控)

let want: Want = {
    bundleName: 'com.ohos.permissionmanager',
    abilityName: 'com.ohos.permissionmanager.SpecificAbility',
    parameters: {
      bundleName: 'com.example.myapplication'
    }
};
拉起CallUI应用相干UIAbility

拉起移动网络设置界面

let want: Want = {
    bundleName: 'com.ohos.callui',
    moduleName: 'mobiledatasettings',
    abilityName: 'com.ohos.mobiledatasettings.MainAbility'
};
拉起SIM卡管理界面

let want: Want = {
    bundleName: 'com.ohos.permissionmanager',
    moduleName: 'simcardmanagement',
    abilityName: 'com.ohos.simcardmanagement.MainAbility'
};
拉起短信应用相干UIAbility

拉起短信界面并指定接洽人

class ModelContactInfo {
    contactsName: string;
    telephone: string;
}
let contactInfo: Array<ModelContactInfo> = [{
    contactsName: 'ZhangSan',
    telephone: '16888888888'
}];
let want: Want = {
    bundleName: 'com.ohos.mms',
    abilityName: 'com.ohos.mms.MainAbility',
    parameters: {
      contactObjects: JSON.stringify(contactInfo),
      pageFlag: 'conversation'
    }
};
拉起相机界面

相机

let want: Want = {
    action: 'ohos.want.action.videoCapture',
    parameters: {
      callBundleName: 'com.example.myapplication',
      supportMultiMode: false
    }
};
图库

let want: Want = {
    action: 'ohos.want.action.imageCapture',
    parameters: {
      callBundleName: 'com.example.myapplication',
      supportMultiMode: false
    }
};
拉起拨号界面


[*] 需要申请ohos.permission.WRITE_CONTACTS权限
       阐明:该权限为system_basic APL级别的权限。
[*] 调用接口确认当前设备是否支持拨号。如果设备支持呼叫本领,则继承跳转到拨号界面,并显示拨号的号码。
[*] 调用接口,拨打电话。

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: HarmonyOS NEXT常见应用及场景Want