2020-07-17 16:35:39 +02:00
|
|
|
<?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="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
tools:context="sushi.hardcore.droidfs.explorers.ExplorerActivity">
|
|
|
|
|
|
|
|
<include layout="@layout/toolbar"/>
|
|
|
|
|
|
|
|
<include layout="@layout/explorer_info_bar"/>
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2021-11-10 19:45:10 +01:00
|
|
|
<include layout="@layout/explorer_content"/>
|
2020-07-17 16:35:39 +02:00
|
|
|
|
2021-11-09 11:12:09 +01:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
2021-06-07 16:34:50 +02:00
|
|
|
android:id="@+id/fab"
|
2020-07-17 16:35:39 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_margin="15dp"
|
2021-06-07 16:34:50 +02:00
|
|
|
android:src="@drawable/icon_add"/>
|
2020-07-17 16:35:39 +02:00
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|