Some fixes for google places.
parent
8a85ec379a
commit
3fbd6824e2
|
@ -38,6 +38,12 @@ public class PlacesAdapter extends ArrayAdapter<GooglePlaceResult> {
|
|||
TextView placeDescriptionWidget = (TextView) resultView.findViewById(R.id.place_description);
|
||||
placeDescriptionWidget.setText(item.getName());
|
||||
|
||||
TextView placeAddressWidget = (TextView) resultView.findViewById(R.id.place_address);
|
||||
placeAddressWidget.setText(item.getVicinity());
|
||||
|
||||
TextView placeRateWidget = (TextView) resultView.findViewById(R.id.place_rate);
|
||||
placeRateWidget.setText("" + item.getRating());
|
||||
|
||||
ImageView placePreviewWidget = (ImageView)resultView.findViewById(R.id.place_img_preview);
|
||||
|
||||
ImageLoader.getInstance().displayImage(
|
||||
|
|
|
@ -9,9 +9,26 @@
|
|||
android:layout_height="80dp"
|
||||
android:layout_marginRight="8dp"/>
|
||||
|
||||
<LinearLayout android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView android:id="@+id/place_description"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/test_string"/>
|
||||
|
||||
<TextView android:id="@+id/place_address"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/test_string"/>
|
||||
|
||||
<TextView android:id="@+id/place_rate"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/test_string"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
</LinearLayout>
|
Loading…
Reference in New Issue