forked from github/szkolny
88 lines
3.0 KiB
XML
88 lines
3.0 KiB
XML
<FrameLayout android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
<LinearLayout
|
|
android:id="@+id/mainActivityRoot"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:background="?attr/colorPrimary"
|
|
android:elevation="4dp"
|
|
tools:title="Szkolny.eu"
|
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />
|
|
<!--app:popupTheme="@style/ThemeOverlay.AppCompat.Light"-->
|
|
|
|
|
|
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
android:id="@+id/coordinator"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/fixed_drawer_container"
|
|
android:layout_width="300dp"
|
|
android:layout_height="match_parent"
|
|
android:visibility="gone">
|
|
|
|
</FrameLayout>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/fragment_wrapper"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal">
|
|
|
|
<pl.szczodrzynski.edziennik.utils.SwipeRefreshLayoutNoTouch
|
|
android:id="@+id/fragment_refresh_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/fragment_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
</pl.szczodrzynski.edziennik.utils.SwipeRefreshLayoutNoTouch>
|
|
|
|
<View
|
|
android:id="@+id/fragment_elevation"
|
|
android:layout_width="5dp"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/shadow_right"
|
|
android:visibility="visible" />
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:id="@+id/toolbar_elevation"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="5dp"
|
|
android:background="@drawable/shadow_top"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
app:layout_collapseMode="pin"/>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</FrameLayout>
|