Files
comaps/android/app/src/main/res/layout/place_page_details.xml
2025-12-18 21:31:25 +01:00

103 lines
3.4 KiB
XML

<?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:background="?windowBackgroundForced"
android:orientation="vertical">
<include layout="@layout/place_page_fat_shadow"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?ppBackground"
android:orientation="vertical">
<androidx.fragment.app.FragmentContainerView
android:id="@+id/place_page_charge_sockets_fragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:layout="@layout/place_page_charge_sockets_fragment" />
<androidx.fragment.app.FragmentContainerView
android:id="@+id/place_page_wikipedia_fragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:layout="@layout/place_page_wikipedia_fragment" />
<include layout="@layout/place_page_placename"/>
<androidx.fragment.app.FragmentContainerView
android:id="@+id/place_page_opening_hours_fragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:layout="@layout/place_page_opening_hours_fragment" />
<include layout="@layout/place_page_cuisine"/>
<include layout="@layout/place_page_entrance"/>
<include layout="@layout/place_page_operator"/>
<include layout="@layout/place_page_network"/>
<androidx.fragment.app.FragmentContainerView
android:id="@+id/place_page_links_fragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:layout="@layout/place_page_links_fragment" />
<include layout="@layout/place_page_level" />
<include layout="@layout/place_page_capacity" />
<include layout="@layout/place_page_wheelchair" />
<include layout="@layout/place_page_wifi"/>
<include layout="@layout/place_page_atm" />
<include layout="@layout/place_page_drive_through" />
<include layout="@layout/place_page_self_service" />
<include layout="@layout/place_page_outdoor_seating"/>
<!-- ToDo: Address is missing compared with iOS. It's shown in title but anyway .. -->
<include layout="@layout/place_page_latlon"/>
<include layout="@layout/place_page_open_in"/>
</LinearLayout>
<include
layout="@layout/place_page_fat_shadow"
android:id="@+id/edit_top_space"
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<com.google.android.material.textview.MaterialTextView
android:id="@+id/place_page_last_checked"
style="@style/TextAppearance.Caption"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/margin_half"
android:paddingHorizontal="@dimen/margin_base"
tools:text="Existence confirmed 1 month ago"/>
<include android:visibility="gone" layout="@layout/place_page_map_too_old"/>
<include android:visibility="gone" layout="@layout/place_page_editor"/>
<include android:visibility="gone" layout="@layout/place_page_add"/>
<android.widget.Space
android:layout_width="match_parent"
android:layout_height="@dimen/place_page_buttons_height"/>
</LinearLayout>