Android检查资源存在吗?

时间:2011-10-26 16:19:13

标签: android

我得到了我的android资源:

    int mySound = (context.getResourceId("raw.mySound"));

有没有办法检查资源是否存在?

由于

1 个答案:

答案 0 :(得分:4)

if(mySound != 0)

意味着它激动

顺便说一句,上下文http://developer.android.com/reference/android/content/Context.html

中没有getResourceId 你的意思是? context.getResources()。getIdentifier(...)?