mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-31 01:53:46 +00:00
36 lines
1.2 KiB
XML
36 lines
1.2 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="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/tv__message"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/margin_base"
|
|
android:layout_marginBottom="@dimen/margin_base"
|
|
android:paddingStart="@dimen/margin_base_plus"
|
|
android:paddingEnd="@dimen/margin_base_plus"
|
|
android:textAppearance="@style/MwmTextAppearance.Body2"
|
|
android:visibility="gone"
|
|
tools:visibility="visible"/>
|
|
|
|
<include layout="@layout/item_divider" />
|
|
|
|
<!-- Outer FrameLayout must NOT be removed -->
|
|
<FrameLayout
|
|
android:id="@+id/items_frame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?windowBackgroundForced">
|
|
<include
|
|
layout="@layout/item_missed_map"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
</FrameLayout>
|
|
|
|
<include layout="@layout/item_divider" />
|
|
</LinearLayout>
|