I'm trying to create a game but am currently facing an issue with rendering text from Strings.xml to a SurfaceView.
Example Strings:
<string name="somestring">Some String
SOme more string</string>
<string name="somestring">Some String\nSOme more string</string>
The two above are the attempts I have tried, but it still shows up as single line when drawn on canvas using canvas.drawText(getString(R.string.<resource>));
How can I make it show as two lines, preferably without splitting the Strings?