forked from organicmaps/organicmaps-tmp
[android] Fixed bookmarks item layout
This commit is contained in:
parent
60e4545dbd
commit
cde18a14e3
2 changed files with 11 additions and 8 deletions
|
@ -344,14 +344,11 @@ public class Holders
|
|||
BookmarkInfo bookmark = new BookmarkInfo(category.getId(), bookmarkId);
|
||||
mName.setText(bookmark.getTitle());
|
||||
final Location loc = LocationHelper.INSTANCE.getSavedLocation();
|
||||
if (loc != null)
|
||||
{
|
||||
final DistanceAndAzimut daa = bookmark.getDistanceAndAzimuth(loc.getLatitude(),
|
||||
loc.getLongitude(), 0.0);
|
||||
mDistance.setText(daa.getDistance());
|
||||
}
|
||||
else
|
||||
mDistance.setText(null);
|
||||
|
||||
String distanceValue = loc == null ? null : bookmark.getDistance(loc.getLatitude(),
|
||||
loc.getLongitude(), 0.0);
|
||||
mDistance.setText(distanceValue);
|
||||
UiUtils.hideIf(TextUtils.isEmpty(distanceValue), mDistance);
|
||||
mIcon.setImageResource(bookmark.getIcon().getSelectedResId());
|
||||
}
|
||||
|
||||
|
|
|
@ -53,4 +53,10 @@ public class BookmarkInfo
|
|||
{
|
||||
return mIcon;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public String getDistance(double latitude, double longitude, double v)
|
||||
{
|
||||
return getDistanceAndAzimuth(latitude, longitude, v).getDistance();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue