我正在尝试提取安装在 Android 设备上的应用程序的名称:
String applicationLabel = _packageManager.getApplicationLabel(appInfo).toString();
// The name can be null (apparently).
applicationLabel = applicationLabel == null ? UNKNOWN : applicationLabel;
return applicationLabel;
问题getApplicationLabel
在于它使用设备的本地名称并返回本地化名称(参见代码片段)
我不想要本地名称,我想要存储在 /values/string.xml 下的默认值
知道我该怎么做吗?