diff --git a/app/src/main/java/pl/tpolgrabia/urbanexplorer/adapters/PlacesAdapter.java b/app/src/main/java/pl/tpolgrabia/urbanexplorer/adapters/PlacesAdapter.java index ed5865c..cbf85c6 100644 --- a/app/src/main/java/pl/tpolgrabia/urbanexplorer/adapters/PlacesAdapter.java +++ b/app/src/main/java/pl/tpolgrabia/urbanexplorer/adapters/PlacesAdapter.java @@ -9,6 +9,7 @@ import android.widget.ArrayAdapter; import android.widget.ImageView; import android.widget.TextView; import com.nostra13.universalimageloader.core.ImageLoader; +import org.apache.commons.lang3.StringUtils; import pl.tpolgrabia.googleutils.dto.GooglePlacePhoto; import pl.tpolgrabia.googleutils.dto.GooglePlaceResult; import pl.tpolgrabia.urbanexplorer.AppConstants; @@ -53,6 +54,9 @@ public class PlacesAdapter extends ArrayAdapter { TextView placeAddressWidget = (TextView) resultView.findViewById(R.id.place_address); placeAddressWidget.setText(item.getVicinity()); + TextView placeType = (TextView) resultView.findViewById(R.id.place_type); + placeType.setText(item.getTypes() != null ? StringUtils.join(item.getTypes(), ",") : "N/A"); + TextView placeRateWidget = (TextView) resultView.findViewById(R.id.place_rate); if (item.getRating() != null && !item.getRating().equals(Double.NaN)) { placeRateWidget.setText("" + item.getRating()); diff --git a/app/src/main/res/layout/google_place_item.xml b/app/src/main/res/layout/google_place_item.xml index 0f97e63..702960e 100644 --- a/app/src/main/res/layout/google_place_item.xml +++ b/app/src/main/res/layout/google_place_item.xml @@ -28,6 +28,11 @@ android:layout_height="wrap_content" android:text="@string/test_string"/> + + diff --git a/urbanexplorerutils/src/main/java/pl/tpolgrabia/urbanexplorerutils/utils/SettingsUtils.java b/urbanexplorerutils/src/main/java/pl/tpolgrabia/urbanexplorerutils/utils/SettingsUtils.java index fa93e54..a497db6 100644 --- a/urbanexplorerutils/src/main/java/pl/tpolgrabia/urbanexplorerutils/utils/SettingsUtils.java +++ b/urbanexplorerutils/src/main/java/pl/tpolgrabia/urbanexplorerutils/utils/SettingsUtils.java @@ -8,6 +8,7 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import pl.tpolgrabia.urbanexplorerutils.constants.UtilConstants; +import java.util.ArrayList; import java.util.HashSet; /** @@ -77,7 +78,8 @@ public class SettingsUtils { public static String getPlacesSearchCategories(Context ctx) { SharedPreferences sharedPrefs = PreferenceManager.getDefaultSharedPreferences(ctx); - return StringUtils.join("|", - sharedPrefs.getStringSet(UtilConstants.GOOGLE_PLACES_CATEGORIES_PREF, new HashSet())); + return StringUtils.join(sharedPrefs.getStringSet( + UtilConstants.GOOGLE_PLACES_CATEGORIES_PREF, new HashSet()), + "|"); } }