Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我string在我的main.java文件中创建了一个如下:
string
main.java
String message = "Current Location \nLongitude: "+ location.getLongitude()+"\nLatitude: "+ location.getLatitude();
我想将此字符串放在我的strings.xml文件中。
strings.xml
这样我就可以string在我的应用程序的不同位置显示值。
我不知道该怎么做。
有什么建议吗?
您只能手动编辑您的 strings.xml,而不是 proramatically。如果这是一个动态字符串(我假设它是),您将不得不将它保存在例如静态变量中,但不能将其写入 strings.xml。