0
Accessing data in android studio
Let's assume there are 10 images in my drawable folder in android studio then How can I give all the image's reference without declaring each image's name?
2 Antworten
+ 21
Don't save the images inside the package, upload them somewhere (cloud/external-file) and program the app to fetch them.... this should be easier....
(/data/data/<packageName>/files/images/savedImage.jpg).....
0
thanks