There appear to be a number of similar questions on this subject, but they either use a different programming language (I am programming with Java) or don't answer my question.
I am using Android Studio to create a Google Maps application. I would like to create markers on the map, by reading in values from a database. Those values will be for a marker's latitude and longitude (i.e. the marker's precise location).
I have created a database and added values into it (I think I've done this correctly - I've been following lots of online tutorials). I also have the Google map successfully working. But I am stuck on how to get the map to read the latitude and longitude values from the database, so that it can generate markers at those corresponding locations.
In Android Studio, I have a GoogleMapsActivity. I have several java classes for the database. I have an AndroidManifest.xml and a google_maps_api.xml. This is all in one "package" (if any of this information helps).
Any ideas for how to do this?