mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-30 17:44:07 +00:00
26 lines
865 B
XML
26 lines
865 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:background="?appBackground">
|
|
|
|
<include
|
|
layout="@layout/toolbar_extended"/>
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:layout_width="@dimen/settings_width"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="?actionBarSize"
|
|
android:layout_gravity="center_horizontal">
|
|
<FrameLayout
|
|
android:id="@+id/fragment_container"
|
|
style="@style/MwmWidget.FrameLayout.Elevation"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?appBackground"/>
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
</FrameLayout>
|