Panoramio styles improved
parent
6f229e0f33
commit
071f2e2f50
|
@ -22,6 +22,8 @@ import java.util.List;
|
||||||
* Created by tpolgrabia on 27.08.16.
|
* Created by tpolgrabia on 27.08.16.
|
||||||
*/
|
*/
|
||||||
public class PanoramioAdapter extends ArrayAdapter<PanoramioImageInfo> {
|
public class PanoramioAdapter extends ArrayAdapter<PanoramioImageInfo> {
|
||||||
|
public static final int MAX_OWNERNAME_LENGTH = 10;
|
||||||
|
public static final int MAX_PANORAMIO_DESCRIPTION_LENGTH = 96;
|
||||||
private final AQuery aq;
|
private final AQuery aq;
|
||||||
|
|
||||||
public PanoramioAdapter(FragmentActivity activity, int location_item, List<PanoramioImageInfo> photosDescriptions) {
|
public PanoramioAdapter(FragmentActivity activity, int location_item, List<PanoramioImageInfo> photosDescriptions) {
|
||||||
|
@ -43,11 +45,29 @@ public class PanoramioAdapter extends ArrayAdapter<PanoramioImageInfo> {
|
||||||
|
|
||||||
TextView locDesc = (TextView) itemView.findViewById(R.id.location_description);
|
TextView locDesc = (TextView) itemView.findViewById(R.id.location_description);
|
||||||
itemView.setTag(item.getPhotoId());
|
itemView.setTag(item.getPhotoId());
|
||||||
locDesc.setText(item.getPhotoTitle());
|
final String description = item.getPhotoTitle();
|
||||||
|
final String trimmedDescription =
|
||||||
|
description != null && description.length() > MAX_PANORAMIO_DESCRIPTION_LENGTH
|
||||||
|
? description.substring(0, MAX_PANORAMIO_DESCRIPTION_LENGTH) + "..."
|
||||||
|
: description;
|
||||||
|
locDesc.setText(trimmedDescription);
|
||||||
final String photoUrl = item.getPhotoFileUrl();
|
final String photoUrl = item.getPhotoFileUrl();
|
||||||
ImageView photoImg = (ImageView) itemView.findViewById(R.id.photo_img);
|
ImageView photoImg = (ImageView) itemView.findViewById(R.id.photo_img);
|
||||||
photoImg.setImageBitmap(BitmapFactory.decodeResource(getContext().getResources(), R.drawable.noimage));
|
photoImg.setImageBitmap(BitmapFactory.decodeResource(getContext().getResources(), R.drawable.noimage));
|
||||||
ImageLoader.getInstance().displayImage(photoUrl, photoImg, MainActivity.options);
|
ImageLoader.getInstance().displayImage(photoUrl, photoImg, MainActivity.options);
|
||||||
|
|
||||||
|
|
||||||
|
TextView authorWidget = (TextView) itemView.findViewById(R.id.location_author);
|
||||||
|
final String ownerName = item.getOwnerName();
|
||||||
|
final String trimmedOwnerName =
|
||||||
|
ownerName != null && ownerName.length() > MAX_OWNERNAME_LENGTH
|
||||||
|
? ownerName.substring(0, MAX_OWNERNAME_LENGTH) + "..."
|
||||||
|
: ownerName;
|
||||||
|
authorWidget.setText(trimmedOwnerName);
|
||||||
|
|
||||||
|
TextView uploadDateWidget = (TextView) itemView.findViewById(R.id.location_upload_date);
|
||||||
|
uploadDateWidget.setText(item.getUploadDate());
|
||||||
|
|
||||||
return itemView;
|
return itemView;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -22,7 +22,7 @@
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/test_string"/>
|
android:text="@string/test_string"/>
|
||||||
|
w
|
||||||
<TextView android:id="@+id/place_rate"
|
<TextView android:id="@+id/place_rate"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="wrap_content"
|
||||||
|
android:padding="10dp">
|
||||||
|
|
||||||
<LinearLayout android:layout_width="match_parent"
|
<LinearLayout android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
@ -18,11 +19,46 @@
|
||||||
android:layout_height="80dp"
|
android:layout_height="80dp"
|
||||||
android:layout_marginRight="10dp"/>
|
android:layout_marginRight="10dp"/>
|
||||||
|
|
||||||
|
<LinearLayout android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/location_description"
|
android:id="@+id/location_description"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/test_string"/>
|
android:text="@string/test_string"/>
|
||||||
|
|
||||||
|
<Space android:layout_width="0dp"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_weight="1" />
|
||||||
|
|
||||||
|
<LinearLayout android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/location_author"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/test_string"/>
|
||||||
|
|
||||||
|
<Space android:layout_width="0dp"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_weight="1" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/location_upload_date"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="right"
|
||||||
|
android:text="@string/test_string"/>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
</FrameLayout>
|
</FrameLayout>
|
|
@ -7,7 +7,7 @@
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginLeft="8dp"
|
android:layout_marginLeft="8dp"
|
||||||
android:layout_marginTop="8dp"
|
android:layout_marginTop="8dp"
|
||||||
android:layout_marginRight="8dp"
|
android:layout_marginRight="8dp"
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
<LinearLayout android:id="@+id/wiki_locs_item_desc_container"
|
<LinearLayout android:id="@+id/wiki_locs_item_desc_container"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="match_parent"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
@ -29,9 +29,14 @@
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/wiki_location_fill_title"/>
|
android:text="@string/wiki_location_fill_title"/>
|
||||||
|
|
||||||
|
<Space android:layout_width="match_parent"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_weight="1"/>
|
||||||
|
|
||||||
<TextView android:id="@+id/wiki_locs_item_distance"
|
<TextView android:id="@+id/wiki_locs_item_distance"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="left"
|
||||||
android:text="@string/wiki_location_fill_distance"/>
|
android:text="@string/wiki_location_fill_distance"/>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue