读书人

[Android]quot;@string/helloquot;跟quot;你好quot;的区

发布时间: 2012-08-07 14:54:48 作者: rapoo

[Android]"@string/hello"和"你好"的区别

?

<TextView ?

? ? android:layout_width="fill_parent"?

? ? android:layout_height="wrap_content"?

? ? android:text="@string/hello"

? ? />

?

<TextView ?

? ? android:layout_width="fill_parent"?

? ? android:layout_height="wrap_content"?

? ? android:text="hello"

? ? />

?

在strings.xml配置string的好处:

1.以后修改方便,类似于C/C++中的宏定义

2.为了国际化

3.节省内存,例如:"hello"被用了10000次,就占用了50000个字节,而使用"@string/hello"则会占用5个,其它地方用到时,就直接取得引用。

读书人网 >Android

热点推荐