如何在字符串的末尾和/或开头保留空格?
我必须将资源/值文件中的这两个字符串连接起来: <string name="Toast_Memory_GameWon_part1">you found ALL PAIRS ! on </string> <string name="Toast_Memory_GameWon_part2"> flips !</string> 我这样做: String message_all_pairs_found = getString(R.string.Toast_Memory_GameWon_part1)+total_flips+getString(R.string.Toast_Memory_GameWon_part2); Toast.makeText(this, message_all_pairs_found, 1000).show(); 但是第一个字符串结尾处和第二个字符串开头处的空格已经消失(当显示Toast时)... 我该怎么办 ? 我猜答案在此文档链接中的某处 还是像使用&amp ;“&”字符?