parent
32d629f879
commit
15ee0a23e9
@ -1,19 +0,0 @@
|
|||||||
package fr.iut.cinecool.fragments
|
|
||||||
|
|
||||||
import android.os.Bundle
|
|
||||||
import androidx.fragment.app.Fragment
|
|
||||||
import android.view.LayoutInflater
|
|
||||||
import android.view.View
|
|
||||||
import android.view.ViewGroup
|
|
||||||
import fr.iut.cinecool.R
|
|
||||||
|
|
||||||
|
|
||||||
class CinemaFragment : Fragment() {
|
|
||||||
override fun onCreateView(
|
|
||||||
inflater: LayoutInflater, container: ViewGroup?,
|
|
||||||
savedInstanceState: Bundle?
|
|
||||||
): View? {
|
|
||||||
// Inflate the layout for this fragment
|
|
||||||
return inflater.inflate(R.layout.fragment_cinema, container, false)
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,5 +0,0 @@
|
|||||||
package fr.iut.cinecool.model
|
|
||||||
|
|
||||||
import android.graphics.drawable.Drawable
|
|
||||||
data class Movie(val id:Int, val name:String, var mark:Int, val realisator:String, var duration: Double, val icon:Int)
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
|||||||
package fr.iut.cinecool.model
|
|
||||||
|
|
||||||
import java.util.Date
|
|
||||||
|
|
||||||
data class Session(val id:Int, val date: Date, val beginHour:Int, val endingHour:Int, val room:String)
|
|
@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
tools:context=".fragments.CinemaFragment">
|
|
||||||
<androidx.recyclerview.widget.RecyclerView
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:id="@+id/recyclerCinemas"/>
|
|
||||||
</FrameLayout>
|
|
Loading…
Reference in new issue