使用 android string.xml 资源是否需要付费?如果我想缩小我的应用程序大小,以下哪个更好
- 在布局文件中声明我的字符串文字,如
<TextView android:text="Hello">
- 仅使用一个字符串文件将所有字符串存储为资源,如
strings.xml
- 每个活动使用一个字符串文件(可以这么说),如
strings_activity_hello.xml
使用 android string.xml 资源是否需要付费?如果我想缩小我的应用程序大小,以下哪个更好
<TextView android:text="Hello">
strings.xml
strings_activity_hello.xml