我得到了我的android资源:
int mySound = (context.getResourceId("raw.mySound"));
有没有办法检查资源是否存在?
由于
答案 0 :(得分:4)
试
if(mySound != 0)
意味着它激动
顺便说一句,上下文http://developer.android.com/reference/android/content/Context.html
中没有getResourceId 你的意思是? context.getResources()。getIdentifier(...)?