2021-02-21 11:34:43 +08:00
|
|
|
<?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"
|
2022-08-30 17:10:11 -03:00
|
|
|
android:background="@color/colorAdvancedBackground"
|
2021-02-21 11:34:43 +08:00
|
|
|
>
|
|
|
|
|
|
2024-07-01 23:04:15 -03:00
|
|
|
<androidx.compose.ui.platform.ComposeView
|
|
|
|
|
android:id="@+id/debugListView"
|
2021-02-21 11:34:43 +08:00
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2024-07-01 23:04:15 -03:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/clearButton" />
|
2021-02-21 11:34:43 +08:00
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/clearButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
|
android:layout_marginEnd="8dp"
|
2022-12-28 17:37:25 -03:00
|
|
|
android:text="@string/clear"
|
2021-02-21 11:34:43 +08:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/closeButton"
|
|
|
|
|
style="@style/Widget.MaterialComponents.Button.Icon"
|
|
|
|
|
android:layout_width="48dp"
|
|
|
|
|
android:layout_height="48dp"
|
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
|
android:insetLeft="0dp"
|
|
|
|
|
android:insetTop="0dp"
|
|
|
|
|
android:insetRight="0dp"
|
|
|
|
|
android:insetBottom="0dp"
|
|
|
|
|
app:backgroundTint="#D1D1D1"
|
|
|
|
|
app:icon="@android:drawable/ic_menu_close_clear_cancel"
|
|
|
|
|
app:iconPadding="0dp"
|
|
|
|
|
app:iconSize="24dp"
|
|
|
|
|
app:iconTint="#000000"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
app:shapeAppearanceOverlay="@style/Meshtastic.Button.Rounded" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView3"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/debug_last_messages"
|
|
|
|
|
android:textStyle="bold"
|
2022-09-13 22:49:38 -03:00
|
|
|
app:layout_constraintBottom_toTopOf="@+id/debug_recyclerview"
|
2021-02-21 11:34:43 +08:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/clearButton"
|
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/closeButton"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2020-09-23 22:47:45 -04:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|