Files
TodoItemsV2/TodoTitemsV2/app/src/main/res/layout/activity_main.xml
Sem van der Hoeven a2628709a0 Add old and new project
2025-09-02 20:25:45 +02:00

44 lines
2.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"
android:background="#000000"
tools:context=".MainActivity">
<androidx.fragment.app.FragmentContainerView
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/fragment_container_view"
app:defaultNavHost="true"
app:navGraph="@navigation/nav_graph"
/>
<!-- <androidx.recyclerview.widget.RecyclerView-->
<!-- android:id="@+id/itemRecyclerView"-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="match_parent"/>-->
<!-- <com.google.android.material.floatingactionbutton.FloatingActionButton-->
<!-- android:id="@+id/floatingActionButton"-->
<!-- android:layout_width="100dp"-->
<!-- android:layout_height="100dp"-->
<!-- android:layout_margin="10dp"-->
<!-- android:onClick="addItem"-->
<!-- app:layout_constraintBottom_toBottomOf="parent"-->
<!-- app:layout_constraintEnd_toEndOf="parent" />-->
<!-- <TextView-->
<!-- android:id="@+id/logView"-->
<!-- android:layout_width="wrap_content"-->
<!-- android:layout_height="wrap_content"-->
<!-- android:layout_marginBottom="10dp"-->
<!-- android:text="LOG"-->
<!-- android:textColor="#00ff00"-->
<!-- app:layout_constraintBottom_toBottomOf="parent"-->
<!-- app:layout_constraintEnd_toStartOf="@+id/floatingActionButton"-->
<!-- app:layout_constraintHorizontal_bias="0.01"-->
<!-- app:layout_constraintStart_toStartOf="parent" />-->
</androidx.constraintlayout.widget.ConstraintLayout>