| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?xml version="1.0" encoding="utf-8"?>
- <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- xmlns:tools="http://schemas.android.com/tools"
- android:fillViewport="true">
- <androidx.constraintlayout.widget.ConstraintLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <TextView
- android:id="@+id/download_wizard_diagnostics_title"
- android:text="@string/download_wizard_diagnostics"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:gravity="center_horizontal"
- android:textSize="20sp"
- android:layout_marginTop="20dp"
- android:layout_marginBottom="20dp"
- android:layout_marginStart="60dp"
- android:layout_marginEnd="60dp"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constrainedWidth="true"
- app:layout_constraintTop_toTopOf="parent" />
- <ImageButton
- android:id="@+id/download_wizard_diagnostics_save"
- android:src="@drawable/ic_save_as_black"
- android:layout_margin="20dp"
- android:layout_width="24dp"
- android:layout_height="24dp"
- android:contentDescription="@string/download_wizard_diagnostics_save"
- app:tint="?attr/colorAccent"
- app:layout_constraintTop_toTopOf="parent"
- app:layout_constraintEnd_toEndOf="parent" />
- <TextView
- android:id="@+id/download_wizard_diagnostics_text"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="10dp"
- android:textIsSelectable="true"
- android:focusable="true"
- android:textSize="10sp"
- android:fontFamily="monospace"
- android:lineSpacingMultiplier="1.1"
- android:longClickable="true"
- app:layout_constraintTop_toBottomOf="@id/download_wizard_diagnostics_title"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintBottom_toBottomOf="parent"
- tools:ignore="SmallSp" />
- </androidx.constraintlayout.widget.ConstraintLayout>
- </ScrollView>
|