diff --git a/android/src/com/mapswithme/maps/ArrowImage.java b/android/src/com/mapswithme/maps/ArrowImage.java index a417b35fdb..ae62fd93f8 100644 --- a/android/src/com/mapswithme/maps/ArrowImage.java +++ b/android/src/com/mapswithme/maps/ArrowImage.java @@ -63,7 +63,7 @@ public class ArrowImage extends ImageView if (m_angle < 0.0) { - canvas.drawCircle(w/2, h/2, Math.min(w/2, h/2), m_paint); + canvas.drawCircle(w/2, h/2, Math.min(w/2, h/2) - 5, m_paint); } else { diff --git a/android/src/com/mapswithme/maps/SearchActivity.java b/android/src/com/mapswithme/maps/SearchActivity.java index ce1457fef6..20dc51bb76 100644 --- a/android/src/com/mapswithme/maps/SearchActivity.java +++ b/android/src/com/mapswithme/maps/SearchActivity.java @@ -158,7 +158,7 @@ public class SearchActivity extends ListActivity implements LocationService.List { holder.m_flag.setVisibility(View.VISIBLE); - if (r.m_flag.length() > 0 && r.m_azimut < 0.0) + if (r.m_flag != null && r.m_flag.length() > 0 && r.m_azimut < 0.0) holder.m_flag.setFlag(m_context.getResources(), r.m_flag); else holder.m_flag.setAzimut(r.m_azimut);