Solución:
n
funciona para mí, así:
<TextView android:text="First linenNext line"
ok lo descubrí:
<string name="sample_string"><![CDATA[some test line 1 <br />some test line 2]]></string>
por lo que es necesario envolver en CDATA y se agregan roturas en el interior como etiquetas html
La versión 1.6 de Android no reconoce r n. En su lugar, use: System.getProperty (“line.separator”)
String s = "Line 1"
+ System.getProperty ("line.separator")
+ "Line 2"
+ System.getProperty ("line.separator");
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)