Welcome to mirror list, hosted at ThFree Co, Russian Federation.

altitude_chart_panel.xml « layout-land « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3815807a2a5190455535792f9bcca45c62ea979 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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:paddingBottom="@dimen/altitude_chart_container_padding_bottom"
    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"/>
</LinearLayout>