解决方法
第二种方法更优雅,因为在内部,TextView(或任何View类)将完成获取指定资源的String的工作.
让组件完成内部工作总是首选.此外,它更短,更易读.
关于我所谈到的内部:如果你看一下Androids的源代码,你可以看到TextView is implemented like this的setText(int)方法:
public final void setText(int resid) { setText(getContext().getResources().getText(resid)); }
因此,它在内部使用Context-class从resource-id获取字符串.现在,如果你看一下getText() – 方法(也来自Context-class),你可以看到它is implemented the same way:
public final String getString(int resId) { return getResources().getString(resId); }
因此,出于性能或可靠性的原因,它没有任何区别.它仍然更短,更具可读性.