mirror of
https://github.com/skyline-emu/skyline.git
synced 2025-01-24 05:47:54 +03:00
18 lines
760 B
XML
18 lines
760 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
||
|
<androidx.coordinatorlayout.widget.CoordinatorLayout 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"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
tools:context=".MainActivity">
|
||
|
|
||
|
<include layout="@layout/titlebar" />
|
||
|
|
||
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
android:id="@+id/controller_list"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
||
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|