我想得到我的设备名称(Samsung SM-P900),而不是型号名称。
如果我尝试使用以下代码获取名称:
BluetoothAdapter myDevice = BluetoothAdapter.getDefaultAdapter();
String deviceName = myDevice.getName();
return deviceName;
它给我一个模型名称,如SM-P900,但它不是我想要的。
有任何想法???
答案 0 :(得分:2)
要在android使用中显示设备名称/型号:
TextView myTv = (TextView) findViewById(R.id.myTv);
String name = android.os.Build.MODEL;
myTv.setText(name);
请参阅此链接:Android build class