Reputation: 97
When ever I drag an image to drawable folder it shows an error message path not found iam using visual studio 2019. So I used URL but it is unreliable as some images fail to load when there are several images in the app. Iam creating a view cell with images I have created the drawable folder and added it in code but it is not working
Upvotes: 1
Views: 4540
Reputation: 1
Exclude drawable folder from project
Add drawable folder as existing folder
Upvotes: 0
Reputation: 5099
The issue is that it seems like you are manually dragging it to the folder, and so it is not getting "included" into your project through Yourproject.Droid.csproj file.
Follow theses steps Inside your Visual Studio:
And now your error should go away
Upvotes: 0
Reputation: 21
You can create it manually. It will have mipmap folders instead. But you can add drawable folder manually and it will work as it should.
Upvotes: 1