What is the difference between getResources().getString(...)
and getString()
when called from my activity? I read that getText(...)
returns stylized text, but when should I use getResources(
) as opposed to directly calling getString()
?
问问题
1350 次
2 回答
6
如果您获取 Android 源代码,特别是Context 类,则它们没有什么特别之处
public final String getString(int resId) {
return getResources().getString(resId);
}
于 2012-07-28T02:00:39.090 回答
2
getString()
是一种方便的方式,因为它经常使用(您无需键入getResources()
...)。除此之外,它们是相同的。
于 2012-07-28T10:59:02.623 回答