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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'android/res/layout/item_facility.xml')
-rw-r--r--android/res/layout/item_facility.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/android/res/layout/item_facility.xml b/android/res/layout/item_facility.xml
new file mode 100644
index 0000000000..69790a57e5
--- /dev/null
+++ b/android/res/layout/item_facility.xml
@@ -0,0 +1,24 @@
+<?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:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:minHeight="@dimen/height_block_base"
+ android:orientation="horizontal"
+ android:gravity="center_vertical"
+ android:background="?clickableBackground"
+ android:clickable="true"
+ tools:visibility="visible">
+
+ <ImageView
+ android:id="@+id/iv__icon"
+ style="@style/PlacePageMetadataIcon"
+ android:src="@drawable/ic_entrance"/>
+
+ <TextView
+ android:id="@+id/tv__facility"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:textAppearance="@style/MwmTextAppearance.Body3.Primary"
+ tools:text="Pets are allowed on request"/>
+</LinearLayout>