I have 2 doubts regarding the storage of drawings in the appropriate folders, that is .. ldpi, mdpi .. What I could not find anywhere.
- I have folders like this:

Since I have all possible folder names, that is .., ldpi, mdpi, hdpi, xhdpi, xxhdpi , should I delete the selected default folder ?
Or do I need to move all the files from drawable-mdpi to the selected default folder and delete the drawable-mdpi folder ?
I use several xml files like drawables, which are selectors, custom backgrounds, etc. that contain links to images, such as
<item android:drawable="@drawable/ic_vote_clicked" android:state_pressed="true"/> <item android:drawable="@drawable/ic_vote_clicked" android:state_focused="true"/> <item android:drawable="@drawable/ic_vote"/>
Where to place these xml files? In each folder? Or is the default folder selected ?
In any case, png, such as @drawable/ic_vote , are in every folder.
source share