2020-05-28 21:27:25 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-01-31 22:11:26 +01: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=".input.ControllerActivity">
|
2020-05-28 21:27:25 +02:00
|
|
|
|
2021-01-31 22:11:26 +01:00
|
|
|
<include
|
|
|
|
android:id="@+id/titlebar"
|
|
|
|
layout="@layout/titlebar" />
|
2020-05-28 21:27:25 +02:00
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2021-01-31 22:11:26 +01:00
|
|
|
android:id="@+id/controller_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2021-03-29 17:58:54 +02:00
|
|
|
android:clipToPadding="false"
|
2021-01-31 22:11:26 +01:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
2020-05-28 21:27:25 +02:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|