25 lines
1.0 KiB
XML
25 lines
1.0 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">
|
||
|
|
|
||
|
|
<androidx.fragment.app.FragmentContainerView
|
||
|
|
android:id="@+id/fragment_container"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"/>
|
||
|
|
|
||
|
|
<ImageButton
|
||
|
|
android:id="@+id/home_button"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginBottom="25dp"
|
||
|
|
android:background="@drawable/home_icon"
|
||
|
|
android:contentDescription="@string/string_home"
|
||
|
|
app:layout_constraintBottom_toBottomOf="@+id/fragment_container"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
app:layout_constraintStart_toStartOf="@+id/fragment_container" />
|
||
|
|
|
||
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|