Android: Get Hardware Information Programmatically

前端 未结 6 1057
遥遥无期
遥遥无期 2020-11-29 01:00

I have a requirement for obtaining the hardware related information on an Android device that runs my application. I need information of the following sort.

  • CP
6条回答
  •  不知归路
    2020-11-29 01:31

    The "Build" class in android.os looks like it will contain some of the information you require

    use it as

    string build = Build.VERSION.DEVICE;
    

    android Hardware Info

提交回复
热议问题