mirror of
https://github.com/skyline-emu/skyline.git
synced 2025-01-24 01:27:57 +03:00
29 lines
1.3 KiB
XML
29 lines
1.3 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<androidx.constraintlayout.widget.ConstraintLayout 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">
|
||
|
|
||
|
<androidx.appcompat.widget.Toolbar
|
||
|
android:id="@+id/toolbar"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="?attr/colorPrimary"
|
||
|
android:minHeight="?attr/actionBarSize"
|
||
|
android:theme="@style/ThemeOverlay.MaterialComponents.Dark.ActionBar"
|
||
|
android:popupTheme="@style/ThemeOverlay.MaterialComponents.Light"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent"/>
|
||
|
|
||
|
<ListView
|
||
|
android:id="@+id/log_list"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="0dp"
|
||
|
android:transcriptMode="normal"
|
||
|
android:fastScrollEnabled="true"
|
||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
app:layout_constraintTop_toBottomOf="@+id/toolbar"/>
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|