我可以知道如何在Firebase Notification body参数中添加换行符或换行符吗? 来自电话的通知显示为:
Title: Title 1 Author: Author 1
我的期望是:
Title: Title 1 Author: Author 1
有什么线索吗?下面是代码,我试过\ n \ n \ n \ r,但它们根本不起作用。
JSONObject body = new JSONObject();
body.put("body", "Title: Title 1\n"
+ "Author: Author 1");