Android 字符串资源xml 默认值default不发生作用
请问下面这个资源写法,为什么不会有默认结果:资源:<stringname="yes">yes<xliff:gid="name"default="youcan">%s</x...
请问下面这个资源写法,为什么不会有默认结果:
资源:<string name="yes">yes <xliff:g id="name" default="you can">%s</xliff:g></string>
一般调用:this.getResources().getString(R.string.yes, "any thing");
调用:this.getResources().getString(R.string.yes); //不带参数希望得到默认值,当然结果不对 展开
资源:<string name="yes">yes <xliff:g id="name" default="you can">%s</xliff:g></string>
一般调用:this.getResources().getString(R.string.yes, "any thing");
调用:this.getResources().getString(R.string.yes); //不带参数希望得到默认值,当然结果不对 展开
展开全部
你可以这么调用this.getResources().getString(R.string.yes, "");
其实这跟方法的重载应该有关系
this.getResources().getString(R.string.yes);
调用的是Resources的
//源码
public String getString(int id) throws NotFoundException {
CharSequence res = getText(id);
if (res != null) {
return res.toString();
}
throw new NotFoundException("String resource ID #0x"
+ Integer.toHexString(id));
}
this.getResources().getString(R.string.yes, "");
调用的是Resources的
//源码
public String getString(int id, Object... formatArgs) throws NotFoundException {
String raw = getString(id);
return String.format(mConfiguration.locale, raw, formatArgs);
}
其实这跟方法的重载应该有关系
this.getResources().getString(R.string.yes);
调用的是Resources的
//源码
public String getString(int id) throws NotFoundException {
CharSequence res = getText(id);
if (res != null) {
return res.toString();
}
throw new NotFoundException("String resource ID #0x"
+ Integer.toHexString(id));
}
this.getResources().getString(R.string.yes, "");
调用的是Resources的
//源码
public String getString(int id, Object... formatArgs) throws NotFoundException {
String raw = getString(id);
return String.format(mConfiguration.locale, raw, formatArgs);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询