mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-20 10:13:51 +00:00
20 lines
677 B
XML
20 lines
677 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:descendantFocusability="blocksDescendants"
|
|
android:background="?cardBackground"
|
|
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="match_parent" />
|
|
</LinearLayout>
|