此问题已在此处有答案:
Android: How to find out name of the bluetooth device connected?(1个答案)
6年前关闭。
我想知道如何在Android中获得连接的蓝牙设备的名称这里是代码
NetworkInfo bluetooth = connectivityManager .getNetworkInfo(ConnectivityManager.TYPE_BLUETOOTH);
if(bluetooth.isConnected())
{
Toast.makeText(myprofile3Context,"bluetooth is connected", Toast.LENGTH_SHORT).show();
}
这里我检查蓝牙设备是否连接。如果蓝牙连接,我想知道如何获得连接设备的名称。
2条答案
按热度按时间drkbr07n1#
使用
extends
BroadcastReceiver
并在manifest
中添加permissions
n6lpvg4x2#
试试这个