Skip to content
Snippets Groups Projects
Select Git revision
  • 0573d26171127adef7091fd5e48d64d29c7f2eb9
  • main default protected
2 results

activity_main.xml

Blame
  • activity_main.xml 1.18 KiB
    <?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"
        tools:context=".MainActivity">
    
        <TextView
            android:id="@+id/textNumTable"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:text="Numéro de la table: "
            app:layout_constraintBottom_toTopOf="@+id/fragment_vertical_layout"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />
    
        <FrameLayout
            android:id="@+id/fragment_vertical_layout"
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/textNumTable" />
    
    
    
    </androidx.constraintlayout.widget.ConstraintLayout>