I am trying to use this:
BitmapFactory.decodeFile("logo.jpg")
and I don't seem to have the file: logo.jpg in the right place in comparison to my apk. where should it go?
P.S. the error I get is:
Edit
I now am using this: >BitmapFactory.decodeResource(getActivity().getResources(),"logo.jpg")
and am now getting a compiler error that says:
The method getActivity() is undefined for the type Brick (Brick is the name of the class)
I don't care which solution works as long as one of them does