Android: Get Hardware Information Programmatically

前端 未结 6 1050
遥遥无期
遥遥无期 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:45

    Log.i("ManuFacturer :", Build.MANUFACTURER);
    Log.i("Board : ", Build.BOARD);
    Log.i("Display : ", Build.DISPLAY);
    

    More info can be found at from http://developer.android.com/reference/android/os/Build.html

提交回复
热议问题