activity的getString下的说明如此:
localized string from the application's package's default string table
Resource的getString说明如下:
Returns the string value associated with a particular resource ID. It will be stripped of any styled text information
但是查看源代码,发现activity的getString如下:
public final String getString(int resId) {
return getResources().getString(resId);
}
其实是一回事。真不明白为什么说明差异如此之大。