Changing max types string length for google places from 40 to 35 (it was

too length for one line in vertical mode).
master
Tomasz Półgrabia 2016-10-09 13:30:45 +02:00
parent 763cda275e
commit 8cf13d5fb9
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ import java.util.List;
public class PlacesAdapter extends ArrayAdapter<GooglePlaceResult> { public class PlacesAdapter extends ArrayAdapter<GooglePlaceResult> {
private static final int MAX_CHARS_FOR_TAGS_IN_INDEX_FRAG = 40; private static final int MAX_CHARS_FOR_TAGS_IN_INDEX_FRAG = 35;
public PlacesAdapter(Context context, List<GooglePlaceResult> objects) { public PlacesAdapter(Context context, List<GooglePlaceResult> objects) {
super(context, R.layout.google_place_item, objects); super(context, R.layout.google_place_item, objects);