I am using it in a EditText Google Place Autocomplete
, to search the streets of a city, for the moment I filter it by Country in the following way:
AutocompleteFilter autocompleteFilter = new
AutocompleteFilter.Builder() **.setTypeFilter(Place.TYPE_COUNTRY)
.setCountry("AR")** .build();*
But I need this search to be even more filtered, be it for a specific city, try to do it with TYPE_POSTAL_CODE
but I can not implement it.