2019-07-25 01:49:43 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-09-14 18:11:00 +05:30
|
|
|
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">
|
2019-07-25 01:49:43 +05:30
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
2019-09-14 18:11:00 +05:30
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
android:minHeight="?attr/actionBarSize"
|
2019-12-11 02:21:02 +05:30
|
|
|
android:theme="@style/AppTheme.ActionBar"
|
|
|
|
app:popupTheme="@style/AppTheme.PopupMenu"
|
2019-09-14 18:11:00 +05:30
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2019-07-25 01:49:43 +05:30
|
|
|
|
|
|
|
<ListView
|
2019-09-14 18:11:00 +05:30
|
|
|
android:id="@+id/log_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:fastScrollEnabled="true"
|
|
|
|
android:transcriptMode="normal"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/toolbar" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|