Is there any way that I can get the image path from drawable folder in android as String. I need this because I implement my own viewflow where I\'m showing the images by us
I think you cannot get it as String but you can get it as int by get resource id:
String
int
id
int resId = this.getResources().getIdentifier("imageNameHere", "drawable", this.getPackageName());