parent
2af4e791a3
commit
fb462fac13
|
@ -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<GooglePlaceResult> {
|
|||
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());
|
||||
|
|
|
@ -28,6 +28,11 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:text="@string/test_string"/>
|
||||
|
||||
<TextView android:id="@+id/place_type"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/test_string"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
|
|
|
@ -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<String>()));
|
||||
return StringUtils.join(sharedPrefs.getStringSet(
|
||||
UtilConstants.GOOGLE_PLACES_CATEGORIES_PREF, new HashSet<String>()),
|
||||
"|");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue