How to get android device properties

前端 未结 3 1799
我寻月下人不归
我寻月下人不归 2020-12-17 20:42

how can i get android device\'s platformId,deviceUser,deviceName,deviceModel, deviceOperatingSystem,deviceOSVersion from my program.

Edit: i have already used that B

3条回答
  •  忘掉有多难
    2020-12-17 21:27

    Extending to what CommonsWare suggested, I think here's what you need:

    Build.VERSION_CODES: Enumeration of the currently known SDK version codes. These are the values that can be found in SDK. Version numbers increment monotonically with each official platform release.

    1. DONUT : Constant Value: 4 (0x00000004)
    2. ECLAIR : Constant Value: 5 (0x00000005)
    3. ECLAIR_0_1 : Constant Value: 6 (0x00000006)
    4. ECLAIR_MR1 : Constant Value: 7 (0x00000007)
    5. FROYO : Constant Value: 8 (0x00000008)
    6. GINGERBREAD : Constant Value: 9 (0x00000009)

    Build class: Information about the current build, extracted from system properties.
    Build.MODEL
    Build.PRODUCT

    Build.VERSION: Various version strings.
    Build.VERSION.RELEASE
    Build.VERSION.SDK_INT

提交回复
热议问题