I\'m trying to get the street name of my current location but I can\'t seem to get it.
I use this method to retrieve the Address:
public Address getAddre
Have you tried using getAddressLine ? See here for more info on this method
getAddressLine
Something like this should do (untested):
for (int i = 0; i < addresses.getMaxAddressLineIndex(); i++) { Log.d("=Adress=",addresses.getAddressLine(i)); }