harmony 鸿蒙Device Management Development

  • 2022-10-28
  • 浏览 (486)

Device Management Development

How do I obtain the DPI of a device?

Applicable to: OpenHarmony SDK 3.2.2.5, stage model of API version 9

Import the \@ohos.display module and call the getDefaultDisplay API.

Example:

import display from '@ohos.display'; 
display.getDefaultDisplay((err, data) => { 
  if (err.code) { 
    console.error('Test Failed to obtain the default display object. Code: ' + JSON.stringify(err)); 
    return; 
  } 
  console.info('Test Succeeded in obtaining the default display object. Data:' + JSON.stringify(data)); 
  console.info('Test densityDPI:' + JSON.stringify(data.densityDPI)); 
});

How do I obtain the type of the device where the application is running?

Applicable to: OpenHarmony SDK 3.2.2.5, stage model of API version 9

Import the \@ohos.deviceInfo module and call the deviceInfo.deviceType API.

For details, see Device Information.

How do I obtain the system version of a device?

Applicable to: OpenHarmony SDK 3.2.5.5, stage model of API version 9

Use the osFullName attribute of the deviceInfo object.

How do I obtain the UDID of an OpenHarmony device?

Applicable to: OpenHarmony SDK3.0, stage model of API version 9

  • To obtain the UDID of the connected device, run the hdc shell bm get –udid command.

  • For details about how to obtain the UDID from code, see udid.

How do I develop a shortcut key function?

Applicable to: OpenHarmony SDK 3.2.6.5, stage model of API version 9

To develop a shortcut key function, use the APIs in Input Consumer.

你可能感兴趣的鸿蒙文章

harmony 鸿蒙FAQs

harmony 鸿蒙Ability Framework Development

harmony 鸿蒙Bundle Management Development

harmony 鸿蒙Network and Connection Development

harmony 鸿蒙Data Management Development

harmony 鸿蒙Development Board Usage

harmony 鸿蒙DFX Development

harmony 鸿蒙Common Event and Notification Development

harmony 鸿蒙File Management Development

harmony 鸿蒙Graphics and Image Development

0  赞