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

layout_routing_full.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d1a6c801df6208be832ee3a981f8f399dbba874 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="utf-8"?>
<merge
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

  <include
      android:id="@+id/layout__routing_setup"
      layout="@layout/layout_routing_setup"/>

  <include
      android:id="@+id/layout__turn_instructions"
      layout="@layout/layout_turn_instructions"
      android:visibility="gone"
      tools:visibility="visible"/>

  <LinearLayout
      android:id="@+id/next_turn"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_below="@id/layout__turn_instructions"
      android:layout_centerHorizontal="true"
      android:layout_marginTop="@dimen/margin_half"
      android:background="@drawable/bg_next_turn"
      android:gravity="center_vertical"
      android:orientation="horizontal"
      android:paddingBottom="@dimen/margin_quarter"
      android:paddingLeft="@dimen/margin_base"
      android:paddingRight="@dimen/margin_base"
      android:paddingTop="@dimen/margin_quarter"
      android:visibility="gone"
      tools:visibility="visible">

    <TextView
        android:id="@+id/tv__next_turn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:padding="@dimen/margin_quarter"
        android:text="@string/next_turn_then"
        android:textColor="@android:color/white"
        android:textSize="@dimen/text_size_toolbar"/>

    <ImageView
        android:id="@+id/iv__next_turn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:contentDescription="@string/next_turn_then"
        tools:src="@drawable/ic_round_then"/>

  </LinearLayout>

</merge>