Hello I try to explain what I mean but it is as following:
<ImageView
android:id="@+id/imageLogo"
android:src="@drawable/logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</ImageView>
I want the src to be an string so it is easy to edit for other users that need to use this. The problem is that the android:src doesn't accept an @string/logo with the file name in it.
Edit: To explain it a bit more: I want my image src be flexible so if a client of mine wants to change his/her logo he/she just need to go to the string.xml and change the value the string has in the name the logo has. But now when I think about it they already need to acces the drawable folder to change their image so thanks for all the help :D