2019-07-03 01:19:45 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context=".MainActivity">
|
2019-07-03 01:19:45 +02:00
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
2019-09-14 14:41:00 +02:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
android:minHeight="?attr/actionBarSize"
|
|
|
|
android:popupTheme="@style/ThemeOverlay.MaterialComponents.Light"
|
|
|
|
android:theme="@style/ThemeOverlay.MaterialComponents.Dark.ActionBar"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2019-07-03 01:19:45 +02:00
|
|
|
|
|
|
|
<ListView
|
2019-09-14 14:41:00 +02:00
|
|
|
android:id="@+id/game_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/toolbar" />
|
2019-07-03 01:19:45 +02:00
|
|
|
|
2019-07-24 22:19:43 +02:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
2019-09-14 14:41:00 +02:00
|
|
|
android:id="@+id/log_fab"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:srcCompat="@drawable/ic_log" />
|
2019-07-24 22:19:43 +02:00
|
|
|
|
2019-09-14 14:41:00 +02:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|