mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-01 10:33:45 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
27 lines
884 B
XML
27 lines
884 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/menu_frame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?cardBackground"
|
|
android:clickable="true"
|
|
android:visibility="gone"
|
|
tools:visibility="visible">
|
|
|
|
<include
|
|
android:id="@+id/routing_plan_frame"
|
|
layout="@layout/menu_route_plan_line"
|
|
tools:layout_height="@dimen/menu_line_height"
|
|
tools:layout_width="match_parent" />
|
|
|
|
<include
|
|
android:id="@+id/routing_action_frame"
|
|
layout="@layout/routing_action_panel"
|
|
android:visibility="gone"
|
|
tools:layout_height="wrap_content"
|
|
tools:layout_marginTop="@dimen/menu_line_height"
|
|
tools:layout_width="match_parent"
|
|
tools:visibility="visible" />
|
|
</FrameLayout>
|