forked from organicmaps/organicmaps
[android] Changed altitude chart layout for landscape mode on Phone UI
This commit is contained in:
parent
bdde0e01e4
commit
afbf9e33c3
2 changed files with 54 additions and 0 deletions
29
android/res/layout-land/altitude_chart_panel.xml
Normal file
29
android/res/layout-land/altitude_chart_panel.xml
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:id="@+id/altitude_chart_panel"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:layout_marginBottom="@dimen/altitude_chart_margin_bottom"
|
||||
android:layout_marginTop="@dimen/altitude_chart_margin_top"
|
||||
android:paddingLeft="@dimen/altitude_chart_container_padding_left"
|
||||
android:paddingStart="@dimen/altitude_chart_container_padding_left"
|
||||
android:paddingRight="@dimen/altitude_chart_container_padding_left"
|
||||
android:paddingEnd="@dimen/altitude_chart_container_padding_left"
|
||||
android:orientation="horizontal"
|
||||
tools:showIn="@layout/fragment_routing">
|
||||
|
||||
<include layout="@layout/routing_details"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="@dimen/altitude_chart_time_distance_height"
|
||||
android:layout_marginRight="24dp"
|
||||
android:layout_marginEnd="24dp"/>
|
||||
|
||||
<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"/>
|
||||
</LinearLayout>
|
25
android/res/layout-w1020dp-land/altitude_chart_panel.xml
Normal file
25
android/res/layout-w1020dp-land/altitude_chart_panel.xml
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:id="@+id/altitude_chart_panel"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:layout_marginBottom="@dimen/altitude_chart_margin_bottom"
|
||||
android:layout_marginTop="@dimen/altitude_chart_margin_top"
|
||||
android:paddingLeft="@dimen/altitude_chart_container_padding_left"
|
||||
android:paddingStart="@dimen/altitude_chart_container_padding_left"
|
||||
android:paddingRight="@dimen/altitude_chart_container_padding_left"
|
||||
android:paddingEnd="@dimen/altitude_chart_container_padding_left"
|
||||
android:orientation="vertical"
|
||||
tools:showIn="@layout/fragment_routing">
|
||||
|
||||
<include layout="@layout/routing_details"/>
|
||||
|
||||
<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"/>
|
||||
</LinearLayout>
|
Loading…
Add table
Reference in a new issue