cocos2dx v3.6中文支持问题 Android5.0

ChineseWords.xml:
desc_0010
最大上阵人物增加至%d人!
showUnlockMessage(StringUtils::format(ChineseWord(“desc_0010”).c_str(), 10));
这个样子 Android4.4完美显示,但是5.0整个标签直接没有了

string ChineseWord(const char* wordId)
{
/if (true)
{
return string(wordId);;
}
/
if (txt_vec.size() == 0)
{
txt_vec = FileUtils::getInstance()->getValueVectorFromFile(“ChineseWords.xml”);
}
auto txt_map = txt_vec.at(0).asValueMap();
string ret = txt_map.at(wordId).asString();
return ret;
}

msgText = getWidget(root, “UnlockMessage”);
mesgText->setstring(msg);