Some fixes for google places.

master
Tomasz Półgrabia 2016-09-29 23:19:43 +02:00
parent 8a85ec379a
commit 3fbd6824e2
2 changed files with 27 additions and 4 deletions

View File

@ -38,6 +38,12 @@ public class PlacesAdapter extends ArrayAdapter<GooglePlaceResult> {
TextView placeDescriptionWidget = (TextView) resultView.findViewById(R.id.place_description); TextView placeDescriptionWidget = (TextView) resultView.findViewById(R.id.place_description);
placeDescriptionWidget.setText(item.getName()); 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); ImageView placePreviewWidget = (ImageView)resultView.findViewById(R.id.place_img_preview);
ImageLoader.getInstance().displayImage( ImageLoader.getInstance().displayImage(

View File

@ -9,9 +9,26 @@
android:layout_height="80dp" android:layout_height="80dp"
android:layout_marginRight="8dp"/> android:layout_marginRight="8dp"/>
<TextView android:id="@+id/place_description" <LinearLayout android:layout_width="wrap_content"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_height="wrap_content" android:orientation="vertical">
android:text="@string/test_string"/>
<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> </LinearLayout>