最新在做一个Android的项目,遇到一个问题,页面上的一个TextView的text要以空格开头:
刚开始的做法是:
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text=" 这是一个文本" />
显示的效果为:只有一个空格
使用另一种方式:在 string.xml定义了一个资源:<string name="str"> 这是一个文本</string>
使用了这种方式,运行起来还是没有空格:
在网上查阅资料后:发现可以使用html格式的,不过需要在后台写代码。
String html=
"<html> hello,我是第一个! 我在空格后面 <br/> 我在下一行 </body></html>"
;
TextView tv = (TextView) findViewById(R.id.text);
tv.setText(html);
TextView tv_html = (TextView) findViewById(R.id.html);
tv_html.setText(Html.fromHtml(html));
所以建议使用下面这种方式:使用 \t 来代替空格
空格:\t(一个空格)
回车换行:\n\r(换行)
<string name="str"> \t\t这是一个文本</string>