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

place_page_hotel_facilities.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 31c3a9353fbd90eacb3cc8ed157fbd27959ce89c (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
<?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/ll__place_hotel_facilities"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:orientation="vertical"
  android:minHeight="@dimen/height_block_base"
  android:visibility="gone"
  tools:background="#4000FFFF"
  tools:visibility="visible">

  <TextView
    android:layout_marginLeft="@dimen/margin_base"
    android:layout_marginRight="@dimen/margin_base"
    android:layout_marginTop="@dimen/margin_base"
    style="@style/PlacePageTitleText"
    android:text="@string/placepage_hotel_facilities"/>

  <androidx.recyclerview.widget.RecyclerView
    android:id="@+id/rv__place_hotel_facilities"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="@dimen/margin_base"
    android:layout_marginRight="@dimen/margin_base"
    android:layout_marginTop="@dimen/margin_base"
    android:layout_marginBottom="@dimen/margin_base"
    android:numColumns="2"
    tools:listitem="@layout/item_facility"/>

  <TextView
    android:id="@+id/tv__place_hotel_facilities_more"
    style="@style/PlacePageMetadataText.Button"
    android:layout_marginLeft="@dimen/margin_base"
    android:layout_marginRight="@dimen/margin_base"
    android:height="@dimen/height_block_base"
    android:background="?clickableBackground"
    android:gravity="center"
    android:text="@string/placepage_more_button"/>

  <include layout="@layout/divider_horizontal"/>
</LinearLayout>