|
|
|
@ -6,14 +6,56 @@
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
tools:context=".SessionFragment">
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
<ImageButton
|
|
|
|
|
android:id="@+id/returnButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Button Sessions"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
android:layout_width="60dp"
|
|
|
|
|
android:layout_height="55dp"
|
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
app:srcCompat="@drawable/back_arrow" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/title"
|
|
|
|
|
android:layout_width="220dp"
|
|
|
|
|
android:layout_height="25dp"
|
|
|
|
|
android:layout_marginStart="20dp"
|
|
|
|
|
android:layout_marginTop="80dp"
|
|
|
|
|
android:text="TextView"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/logo"
|
|
|
|
|
android:layout_width="65dp"
|
|
|
|
|
android:layout_height="60dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
app:srcCompat="@drawable/cinema"
|
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/afficheFilm"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="400dp"
|
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/title"
|
|
|
|
|
app:srcCompat="@drawable/imitation_game" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/description"
|
|
|
|
|
android:layout_width="380dp"
|
|
|
|
|
android:layout_height="100dp"
|
|
|
|
|
android:layout_marginTop="25dp"
|
|
|
|
|
android:text="TextView"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/afficheFilm" />
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|