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

place_page.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 76fa88dda701be76c517dcecdc61c90b02a7221e (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
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">

  <com.mapswithme.maps.widget.ObservableScrollView
    android:id="@+id/pp__details"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:overScrollMode="never"
    android:layout_above="@+id/pp__buttons">

    <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:orientation="vertical">

      <include
        android:id="@+id/pp__preview"
        layout="@layout/place_page_preview"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

      <include
        android:id="@+id/pp__details_frame"
        layout="@layout/place_page_details"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="?panel"/>

      <View
        android:id="@+id/pp__height_compensation"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:background="?cardBackground"/>
    </LinearLayout>
  </com.mapswithme.maps.widget.ObservableScrollView>

  <include
    android:id="@+id/pp__buttons"
    layout="@layout/place_page_button_frame"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"/>

  <include
    android:id="@+id/toolbar_layout"
    layout="@layout/toolbar_elevated"
    android:visibility="gone"/>

</merge>