Android获取手机的型号等

获取手机的型号等

        super.onCreate(savedInstanceState); 
        setContentView(R.layout.main); 
       TextView textView = (TextView) findViewById(R.id.text); 
        textView.setText("手机型号: " + android.os.Build.MODEL + ",\nSDK版本:"   
                + android.os.Build.VERSION.SDK + ",\n系统版本:"   
                + android.os.Build.VERSION.RELEASE); 
    }   

你可能感兴趣的:(Android获取手机的型号等)