Here you need to extract the Drawable Id by passing your own id value, instead of the ids which are present in R.java
So for that getIdentifier method is used where you need to provide the drawable name, type of the resource which is "drawable" in your case, and the packageName where Android will search the drawable from.
int drawableId = getResources().getIdentifier("br" + mQuestionNumber,"drawable",getPackageName());
After the id is found, use it to show it in imageView using setImageDrawable() and as it required Drawable get the Drawabel from its iD using getDrawable() passing in the ID.
mSlikaNastavi.setImageDrawable(getResources().getDrawable(drawableId));
So the code is:
int drawableId = getResources().getIdentifier("br" + mQuestionNumber,"drawable",getPackageName());
mSlikaNastavi.setImageDrawable(getResources().getDrawable(drawableId));