mirror of
https://github.com/skyline-emu/skyline.git
synced 2025-01-23 19:07:54 +03:00
8e1f8ae7e9
This commit focuses on making the UI completely usable using a controller so that a user won't have to switch between their device's touch screen and a controller constantly.
20 lines
884 B
XML
20 lines
884 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=".LogActivity">
|
|
|
|
<include layout="@layout/titlebar" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/log_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fastScrollEnabled="true"
|
|
android:focusedByDefault="true"
|
|
android:transcriptMode="normal"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|