Androidライブラリ(com.appocaliptic.quizknife.core)を使用するAndroidプロジェクト(com.appocaliptic.quizknife.app)があります。
私がやろうとしているのは、ライブラリである画像のリソース ID を取得することです。画像へのパス: res/drawable-xhdpi/fr_200_133.png
ただし、getIdentifier の結果はすべて 0 で試行されます。どこに問題がありますか?
resId = getResources().getIdentifier("fr_200_133", "drawable", "com.appocaliptic.quizknife.core");
resId = getResources().getIdentifier("com.appocaliptic.quizknife.core:drawable/"+"fr_200_133", null, null);
resId = getResources().getIdentifier("drawable/fr_200_133", null, "com.appocaliptic.quizknife.core");
編集:
ああ、そしてR.javaにはdrawableとcorensponding属性があります。