Does anyone know if \\u200b should be working on Android as a zero width space that functions as a line break if the TextView length is exceeded by the text of the TextView?
In your strings.xml:
xyz987]]>
In your Activity:
TextView textView = (TextView) findViewById(R.id.myText); textView.setText(Html.fromHtml(getResources().getString(R.string.sample_string)));
Hope it helps!