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

place_page_details.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e617416eb32b54ca88cb530ae000704d7b055569 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="wrap_content">
  <com.mapswithme.maps.widget.ObservableScrollView
      android:id="@+id/pp__details"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:background="@color/bg_top_panels"
      android:overScrollMode="never">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:paddingLeft="@dimen/margin_base_plus"
        android:paddingRight="@dimen/margin_base_plus"
        android:paddingTop="@dimen/margin_base">

      <View
          android:layout_width="match_parent"
          android:layout_height="1dp"
          android:layout_marginBottom="@dimen/margin_half"
          android:background="?attr/dividerHorizontal"/>

      <include layout="@layout/place_page_editor"/>

      <include layout="@layout/place_page_placename"/>

      <include layout="@layout/place_page_entrance"/>

      <include layout="@layout/place_page_phone"/>

      <include layout="@layout/place_page_website"/>

      <include layout="@layout/place_page_wiki"/>

      <include layout="@layout/place_page_email"/>

      <include layout="@layout/place_page_schedule"/>

      <include layout="@layout/place_page_latlon"/>

      <include layout="@layout/place_page_wifi"/>

      <include layout="@layout/place_page_operator"/>

      <include layout="@layout/place_page_cuisine"/>

      <View
          android:layout_width="match_parent"
          android:layout_height="0px"
          android:layout_marginBottom="@dimen/margin_half"/>

      <include
          layout="@layout/place_page_bookmark_details"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"/>
    </LinearLayout>
  </com.mapswithme.maps.widget.ObservableScrollView>

  <include layout="@layout/shadow_top"/>

  <include layout="@layout/shadow_bottom"/>
</FrameLayout>