Merhaba,

Şöyle yapmayı denediniz mi ?

İçerikler ;
res/drawable
-- fruits
  -- apple.png
  -- orange.png
-- vegetables
  -- cabbage.png
  -- carrot.png
Örnek Kod Parçası
InputStream is = null;
try {
    is = this.getResources().getAssets().open("fruits/apple.png");
} catch (IOException e) {
    //something
}

image = BitmapFactory.decodeStream(is);
Kaynak

Saygılarımla.