2019-07-03 01:19:45 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-04-12 22:29:19 +02:00
|
|
|
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-09-14 14:41:00 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-07-11 23:29:05 +02:00
|
|
|
android:id="@+id/coordinatorLayout"
|
2019-09-14 14:41:00 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context=".MainActivity">
|
2019-07-03 01:19:45 +02:00
|
|
|
|
2020-04-12 22:29:19 +02:00
|
|
|
<include layout="@layout/titlebar" />
|
|
|
|
|
2020-04-12 18:13:29 +02:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/app_list"
|
2019-09-14 14:41:00 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-04-17 22:32:17 +02:00
|
|
|
android:layout_height="match_parent"
|
2020-04-12 22:29:19 +02:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
2019-07-03 01:19:45 +02:00
|
|
|
|
2020-07-11 23:29:05 +02:00
|
|
|
<emu.skyline.views.CustomLinearLayout
|
2019-09-14 14:41:00 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-12 22:29:19 +02:00
|
|
|
android:layout_gravity="bottom|end"
|
|
|
|
android:orientation="vertical">
|
2019-12-10 11:13:19 +01:00
|
|
|
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
|
android:id="@+id/open_fab"
|
2020-04-12 22:29:19 +02:00
|
|
|
style="@style/Widget.MaterialComponents.FloatingActionButton"
|
2019-12-10 11:13:19 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-07-09 21:14:14 +02:00
|
|
|
android:layout_marginEnd="16dp"
|
2019-12-10 11:13:19 +01:00
|
|
|
android:layout_marginBottom="8dp"
|
2020-04-12 22:29:19 +02:00
|
|
|
app:maxImageSize="26dp"
|
2019-12-10 11:13:19 +01:00
|
|
|
app:srcCompat="@drawable/ic_open" />
|
|
|
|
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
|
android:id="@+id/log_fab"
|
2020-04-12 22:29:19 +02:00
|
|
|
style="@style/Widget.MaterialComponents.FloatingActionButton"
|
2019-12-10 11:13:19 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-07-09 21:14:14 +02:00
|
|
|
android:layout_marginBottom="16dp"
|
2020-04-12 22:29:19 +02:00
|
|
|
app:maxImageSize="26dp"
|
2019-12-10 11:13:19 +01:00
|
|
|
app:srcCompat="@drawable/ic_log" />
|
2020-07-11 23:29:05 +02:00
|
|
|
</emu.skyline.views.CustomLinearLayout>
|
2019-07-24 22:19:43 +02:00
|
|
|
|
2020-04-12 22:29:19 +02:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|