Android中是否存在各种资源类型的常量(即:“drawable”)?
我想根据getResourceTypeName的返回值编写一些条件逻辑,我宁愿避免硬编码资源类型。
示例:
final String type = context.getResources().getResourceTypeName(resid);
if ("drawable".equalsIgnoreCase(type)) {
// Something
} else if ("xml".equalsIgnoreCase(type)) {
// Something else
}
// TODO: Replace above strings with system constants
(显然,我可以创建自己的常量,但我更倾向于使用系统常量来确保向上兼容性)
答案 0 :(得分:0)
似乎是硬编码:
http://codesearch.google.com/codesearch?q= \%22drawable \%22 + \%22xml \%22安培; exact_package = GIT中://android.git.kernel.org/platform/frameworks/base.git