android – setText(getString(R.strings.whatever)或setText(R.strings.whatever)?

前端之家收集整理的这篇文章主要介绍了android – setText(getString(R.strings.whatever)或setText(R.strings.whatever)?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
两者都有效,显然如果你开始连接,你需要获取字符串以避免显示int.

问题:哪种“优雅”或“推荐”使用?

谢谢

解决方法

第二种方法更优雅,因为在内部,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);
}

因此,出于性能或可靠性的原因,它没有任何区别.它仍然更短,更具可读性.

原文链接:https://www.f2er.com/android/310301.html

猜你在找的Android相关文章