A bit better displaying item categories and working search by item

category.
master
Tomasz Półgrabia 2016-10-06 23:33:08 +02:00
parent 2af4e791a3
commit fb462fac13
3 changed files with 13 additions and 2 deletions

View File

@ -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());

View File

@ -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>

View File

@ -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>()),
"|");
}
}