[android] Fixed displaying the altitude chart in bottom routing panel

This commit is contained in:
Александр Зацепин 2020-03-31 18:35:04 +03:00 committed by Vladimir Byko-Ianko
parent c4c60b1b44
commit 71aff1360a
2 changed files with 6 additions and 7 deletions

View file

@ -19,11 +19,10 @@
<include layout="@layout/routing_details"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="24dp"
android:layout_marginEnd="24dp"/>
android:layout_marginEnd="@dimen/margin_base_plus"/>
<ImageView
android:id="@+id/altitude_chart"
android:layout_width="@dimen/altitude_chart_image_width"
android:layout_height="@dimen/altitude_chart_image_height"/>
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>

View file

@ -19,7 +19,7 @@
<ImageView
android:id="@+id/altitude_chart"
android:layout_width="@dimen/altitude_chart_image_width"
android:layout_height="@dimen/altitude_chart_image_height"
android:layout_marginBottom="8dp"/>
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="@dimen/margin_half"/>
</LinearLayout>