我正在制作一个应用程序,它会在某个时候将有关当前设备的网络信息发送到一个新号码。我可以很好地发送消息,但是当收到消息时,文本的格式/内容很奇怪。
我在 2.2 模拟器上运行我的应用程序。
我发送消息的代码是:
SmsManager smsManager = SmsManager.getDefault(); //SMS Manager
ConnectivityManager connManager; //Connectivity Manager
NetworkInfo network = connManager.getNetworkInfo(networkType); //Getting the network type
String sendTo = "5556"; //Number to send to
String myMsg = ("Network: " + network.toString()); //Message will contain
smsManager.sendTextMessage(sendTo, null, myMsg, null, null); //Sending the message
收到的消息如下图所示:
有任何想法吗?