0

我想发送带有许多新行或一些粗体文本或一些超链接的消息

例如:下面是我的代码

  List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
  String model = Build.MODEL + ",  " + Build.MANUFACTURER;
  nameValuePairs.add(new BasicNameValuePair("message", "Your Last Alert:  On "+mDate+" at "+mTime+", "+ model +" reported that its battery level was down to "+batteryLevel+". You might want to get it on a charger before it's too late! &nbsp;&nbsp Do you know where "+model+" is? </br></br> Click "+s+" to view in Google Maps.\n To find "+model+" with the Last Alert app on Android-phone, click here. \n\n\n\n\n\n Last Known Location : \n San Francisco California United States 94108"+"\n\n\n\n\n GPS Coordinates \n"+lat+", "+lon+"Altitude\n"+alt+"\n\nLocation Accuracy"+"16.40ft Diameter"));

我已经使用&nbsp;了空间,<br>换行也\n用于换行,但问题是仅以纯文本形式发送的消息(我已在 gmail 中发送邮件,这是我的帐户),如下所示

 Your Last Alert: On 10/04/2012 at 03:23 pm, LG-P500, LGE reported that its battery level was down to 100. You might want to get it on a charger before it's too late!  &nbsp Do you know where LG-P500, LGE is? Click https://maps.google.com/maps?q=0.0,0.0 to view in Google Maps. To find LG-P500, LGE with the Last Alert app on Android-phone, click here. Last Known Location : San Francisco California United States 94108 GPS Coordinates 0.0, 0.0Altitude -1.79769313486231E308 Location Accuracy16.40ft Diameter
4

2 回答 2

2

一个猜测..尝试用“ </br></br>”替换“ <br/><br/>”。这可能会解决您的问题。

于 2012-10-04T10:16:50.537 回答
1
  1. 您是否将“内容类型”(在您的 http 请求的标头中)设置为: text/html
  2. 将您的信息包装成<html>
  3. 使用<br/>标签代替\n
于 2012-10-04T10:16:34.290 回答