Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • 2a36733045b5101235fcb5bacc364ace9e685373
  • master par défaut protégée
  • Navigation_Project
3 résultats

activity_main.xml

Blame
  • activity_main.xml 936 o
    <?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:id="@+id/constraintLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity">
    
    
        <fragment
            android:id="@+id/fragment_tasklist"
            android:name="com.clemhaowen.dm_td2.tasklist.TaskListFragment"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="Hello World!"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toTopOf="parent" />
    
    </androidx.constraintlayout.widget.ConstraintLayout>