如何在Android(三星设备)中获取devicename

时间:2015-06-16 09:37:09

标签: c# android xamarin

我想得到我的设备名称(Samsung SM-P900),而不是型号名称。

如果我尝试使用以下代码获取名称:

    BluetoothAdapter myDevice = BluetoothAdapter.getDefaultAdapter();
    String deviceName = myDevice.getName();     
    return deviceName;

它给我一个模型名称,如SM-P900,但它不是我想要的。

有任何想法???

修改 Here is wat i want.

1 个答案:

答案 0 :(得分:2)

要在android使用中显示设备名称/型号:

TextView myTv = (TextView) findViewById(R.id.myTv);
String name = android.os.Build.MODEL;
myTv.setText(name);

请参阅此链接:Android build class