41 lines
1.5 KiB
XML
41 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<layout 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">
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:id="@+id/cl_parent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<!-- <androidx.appcompat.widget.Toolbar-->
|
|
<!-- android:id="@+id/my_toolbar"-->
|
|
<!-- android:layout_width="match_parent"-->
|
|
<!-- android:layout_height="?attr/actionBarSize"-->
|
|
<!-- android:background="?attr/colorPrimary"-->
|
|
<!-- app:titleTextColor="#FFFFFF"-->
|
|
<!-- android:elevation="4dp"-->
|
|
<!-- app:menu="@menu/my_menu"-->
|
|
<!-- android:theme="@style/ToolbarTheme"-->
|
|
<!-- app:popupTheme="@style/ThemeOverlay.AppCompat.Light"-->
|
|
<!-- app:layout_constraintStart_toStartOf="parent"-->
|
|
<!-- app:layout_constraintTop_toTopOf="parent"/>-->
|
|
|
|
<FrameLayout
|
|
android:id="@+id/fg_diagnostics"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
tools:context=".presentation.diagnostics.DiagnosticsActivity">
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</layout>
|