StackTips
 2 minutes

How to Get Device Information in Android

By Editorial @stacktips, On Sep 17, 2023 Android 2.25K Views

The following code snippet will get the device detailed information in Android.

public class DashboardActivity extends Activity { 

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        String  details =  "VERSION.RELEASE : "+Build.VERSION.RELEASE
            +"nVERSION.INCREMENTAL : "+Build.VERSION.INCREMENTAL
            +"nVERSION.SDK.NUMBER : "+Build.VERSION.SDK_INT
            +"nBOARD : "+Build.BOARD
            +"nBOOTLOADER : "+Build.BOOTLOADER
            +"nBRAND : "+Build.BRAND
            +"nCPU_ABI : "+Build.CPU_ABI
            +"nCPU_ABI2 : "+Build.CPU_ABI2
            +"nDISPLAY : "+Build.DISPLAY
            +"nFINGERPRINT : "+Build.FINGERPRINT
            +"nHARDWARE : "+Build.HARDWARE
            +"nHOST : "+Build.HOST
            +"nID : "+Build.ID
            +"nMANUFACTURER : "+Build.MANUFACTURER
            +"nMODEL : "+Build.MODEL
            +"nPRODUCT : "+Build.PRODUCT
            +"nSERIAL : "+Build.SERIAL
            +"nTAGS : "+Build.TAGS
            +"nTIME : "+Build.TIME
            +"nTYPE : "+Build.TYPE
            +"nUNKNOWN : "+Build.UNKNOWN
            +"nUSER : "+Build.USER;

           TextView textView = new TextView();

           textView.setText(details);
           setContentView(textView);
        }
}

stacktips avtar

Editorial

StackTips provides programming tutorials, how-to guides and code snippets on different programming languages.