add ouaf v2

master
HandyS11 2 years ago
parent 8008bd75e9
commit f2d7acd740

@ -0,0 +1,65 @@
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
id 'kotlin-kapt'
}
android {
namespace 'fr.iut.ouafff'
compileSdk 33
defaultConfig {
applicationId "fr.iut.ouafff"
minSdk 16
targetSdk 33
versionCode 1
versionName "1.0"
// Permet de spécifier le fichier dans lequel stocker le schéma de la BdD
kapt {
arguments {
arg("room.schemaLocation", "$projectDir/schemas".toString())
}
}
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
buildFeatures {
dataBinding true
}
}
dependencies {
implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.6.0'
implementation 'com.google.android.material:material:1.8.0'
implementation "androidx.fragment:fragment-ktx:1.5.5"
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation "androidx.cardview:cardview:1.0.0"
// Room ORM
def room_version = "2.5.0"
implementation "androidx.room:room-runtime:$room_version"
kapt "androidx.room:room-compiler:$room_version"
implementation "androidx.room:room-ktx:$room_version"
// Coroutines KTX
def lifecycle_version = "2.5.1"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version"
}

@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

@ -0,0 +1,76 @@
{
"formatVersion": 1,
"database": {
"version": 1,
"identityHash": "ec7718f7c93df353ddf73a877a18b155",
"entities": [
{
"tableName": "dogs",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`name` TEXT NOT NULL, `breed` TEXT NOT NULL, `gender` INTEGER NOT NULL, `weight` REAL NOT NULL, `aggressiveness` INTEGER NOT NULL, `owner` TEXT, `admissionDate` INTEGER, `id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)",
"fields": [
{
"fieldPath": "name",
"columnName": "name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "breed",
"columnName": "breed",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "gender",
"columnName": "gender",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "weight",
"columnName": "weight",
"affinity": "REAL",
"notNull": true
},
{
"fieldPath": "aggressiveness",
"columnName": "aggressiveness",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "owner",
"columnName": "owner",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "admissionDate",
"columnName": "admissionDate",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
}
],
"views": [],
"setupQueries": [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'ec7718f7c93df353ddf73a877a18b155')"
]
}
}

@ -0,0 +1,24 @@
package fr.iut.ouafff
import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.Assert.*
/**
* Instrumented test, which will execute on an Android device.
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
@RunWith(AndroidJUnit4::class)
class ExampleInstrumentedTest {
@Test
fun useAppContext() {
// Context of the app under test.
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
assertEquals("fr.iut.ouafff", appContext.packageName)
}
}

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<!-- L'idée de l'appli vient d'un cours Udacity :
Pets App (https://github.com/udacity/ud845-Pets)
je l'ai ensuite largement adaptée pour la Licence Pro PM -->
<application
android:name=".DogApplication"
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Ouafff.NoActionBar"
tools:targetApi="33">
<activity
android:name=".ui.activity.DogListActivity"
android:exported="true"
android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".ui.activity.DogActivity"
android:parentActivityName=".ui.activity.DogListActivity" />
<activity
android:name=".ui.activity.DogPagerActivity"
android:parentActivityName=".ui.activity.DogListActivity" />
</application>
</manifest>

@ -0,0 +1,11 @@
package fr.iut.ouafff
import android.app.Application
import fr.iut.ouafff.data.persistance.DogDatabase
class DogApplication : Application() {
override fun onCreate() {
super.onCreate()
DogDatabase.initialize(this)
}
}

@ -0,0 +1,24 @@
package fr.iut.ouafff.data
import androidx.room.Entity
import androidx.room.PrimaryKey
import java.util.Date
const val NEW_DOG_ID = 0L
@Entity(tableName = "dogs")
data class Dog(var name: String = "",
var breed: String = "",
var gender: Gender = Gender.UNKNOWN,
var weight: Float = 0f,
var aggressiveness: Int = 0,
var owner: String? = null,
var admissionDate: Date? = null,
@PrimaryKey(autoGenerate = true) val id: Long = NEW_DOG_ID) {
enum class Gender {
UNKNOWN,
MALE,
FEMALE
}
}

@ -0,0 +1,29 @@
package fr.iut.ouafff.data
import android.util.Log
import androidx.lifecycle.LiveData
import fr.iut.ouafff.data.persistance.DogDao
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.withContext
import java.util.concurrent.Callable
import java.util.concurrent.ExecutorService
import java.util.concurrent.Executors
import java.util.concurrent.Future
class DogRepository(private val dogDao: DogDao) {
suspend fun insert(dog: Dog) = withContext(Dispatchers.IO) { Log.i("DogRepo", "INSERT"); dogDao.insert(dog) }
suspend fun delete(dog: Dog) = withContext(Dispatchers.IO) { Log.i("DogRepo", "DELETE"); dogDao.delete(dog) }
suspend fun update(dog: Dog) = withContext(Dispatchers.IO) { Log.i("DogRepo", "UPDATE"); dogDao.update(dog) }
fun findById(dogId: Long): LiveData<Dog> {
Log.i("DogRepo", "FIND DOG")
return dogDao.findById(dogId)
}
fun getAll(): LiveData<List<Dog>> {
Log.i("DogRepo", "GET ALL DOGS")
return dogDao.getAll()
}
}

@ -0,0 +1,28 @@
package fr.iut.ouafff.data.persistance
import androidx.lifecycle.LiveData
import androidx.room.*
import androidx.room.OnConflictStrategy.Companion.REPLACE
import fr.iut.ouafff.data.Dog
@Dao
interface DogDao {
@Query("SELECT * FROM dogs")
fun getAll(): LiveData<List<Dog>>
@Query("SELECT * FROM dogs WHERE id = :id")
fun findById(id: Long): LiveData<Dog>
@Insert(onConflict = REPLACE)
suspend fun insert(dog: Dog)
@Insert
suspend fun insertAll(vararg dogs: Dog)
@Update(onConflict = REPLACE)
suspend fun update(dog: Dog)
@Delete
suspend fun delete(dog: Dog)
}

@ -0,0 +1,53 @@
package fr.iut.ouafff.data.persistance
import android.app.Application
import androidx.room.Database
import androidx.room.Room
import androidx.room.RoomDatabase
import androidx.room.TypeConverters
import fr.iut.ouafff.DogApplication
import fr.iut.ouafff.data.Dog
import fr.iut.ouafff.data.persistance.converter.DateToLongConverter
import fr.iut.ouafff.data.persistance.converter.GenderToIntConverter
private const val DOG_DB_FILENAME = "dogs.db"
@Database(entities = [Dog::class], version = 1)
@TypeConverters(GenderToIntConverter::class, DateToLongConverter::class)
abstract class DogDatabase : RoomDatabase() {
abstract fun dogDAO(): DogDao
companion object {
private lateinit var application: Application
@Volatile
private var instance: DogDatabase? = null
fun getInstance(): DogDatabase {
if (::application.isInitialized) {
if (instance == null)
synchronized(this) {
if (instance == null)
instance = Room.databaseBuilder(
application.applicationContext,
DogDatabase::class.java,
DOG_DB_FILENAME
)
.build()
}
return instance!!
} else
throw RuntimeException("the database must be first initialized")
}
@Synchronized
fun initialize(app: DogApplication) {
if (::application.isInitialized)
throw RuntimeException("the database must not be initialized twice")
application = app
}
}
}

@ -0,0 +1,12 @@
package fr.iut.ouafff.data.persistance.converter
import androidx.room.TypeConverter
import java.util.Date
class DateToLongConverter {
@TypeConverter
fun fromTimestamp(timestamp: Long?) = timestamp?.let { Date(it) }
@TypeConverter
fun toTimestamp(date: Date?) = date?.time
}

@ -0,0 +1,14 @@
package fr.iut.ouafff.data.persistance.converter
import androidx.room.TypeConverter
import fr.iut.ouafff.data.Dog.Gender
fun Int.toGender() = enumValues<Gender>()[this]
class GenderToIntConverter {
@TypeConverter
fun fromInt(ordinal: Int) = ordinal.toGender()
@TypeConverter
fun toOrdinal(gender: Gender) = gender.ordinal
}

@ -0,0 +1,37 @@
package fr.iut.ouafff.ui.activity
import android.content.Context
import android.content.Intent
import android.os.Bundle
import fr.iut.ouafff.R
import fr.iut.ouafff.data.NEW_DOG_ID
import fr.iut.ouafff.ui.fragment.DogFragment
class DogActivity : SimpleFragmentActivity(), DogFragment.OnInteractionListener {
companion object {
private const val EXTRA_DOG_ID = "fr.iut.ouafff.extra_dog_id"
fun getIntent(context: Context, dogId: Long) =
Intent(context, DogActivity::class.java).apply {
putExtra(EXTRA_DOG_ID, dogId)
}
}
private var dogId = NEW_DOG_ID
override fun onCreate(savedInstanceState: Bundle?) {
dogId = intent.getLongExtra(EXTRA_DOG_ID, NEW_DOG_ID)
super.onCreate(savedInstanceState)
supportActionBar?.setDisplayHomeAsUpEnabled(true)
}
override fun createFragment() = DogFragment.newInstance(dogId)
override fun getLayoutResId() = R.layout.toolbar_activity
override fun onDogSaved() = finish()
override fun onDogDeleted() = finish()
}

@ -0,0 +1,73 @@
package fr.iut.ouafff.ui.activity
import android.os.Bundle
import android.widget.FrameLayout
import fr.iut.ouafff.R
import fr.iut.ouafff.data.NEW_DOG_ID
import fr.iut.ouafff.ui.fragment.DogFragment
import fr.iut.ouafff.ui.fragment.DogListFragment
class DogListActivity : SimpleFragmentActivity(),
DogListFragment.OnInteractionListener, DogFragment.OnInteractionListener {
private var isTwoPane: Boolean = false
private lateinit var masterFragment: DogListFragment
override fun createFragment() = DogListFragment().also { masterFragment = it }
override fun getLayoutResId() = R.layout.toolbar_md_activity
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
supportActionBar?.setIcon(R.mipmap.ic_launcher)
isTwoPane = findViewById<FrameLayout>(R.id.container_fragment_detail) != null
if (savedInstanceState != null)
masterFragment = supportFragmentManager.findFragmentById(R.id.container_fragment) as DogListFragment
if (!isTwoPane) {
removeDisplayedFragment()
}
}
override fun onDogSelected(dogId: Long) {
if (isTwoPane) {
supportFragmentManager.beginTransaction()
.replace(R.id.container_fragment_detail, DogFragment.newInstance(dogId))
.commit()
} else {
// Pour la version sans le pager, remplacer DogPagerActivity par DogActivity
startActivity(DogPagerActivity.getIntent(this, dogId))
}
}
override fun onAddNewDog() = startActivity(DogActivity.getIntent(this, NEW_DOG_ID))
override fun onDogSaved() { /* Nothing to do */ }
private fun removeDisplayedFragment() {
supportFragmentManager.findFragmentById(R.id.container_fragment_detail)?.let {
supportFragmentManager.beginTransaction().remove(it).commit()
}
}
override fun onDogDeleted() {
if (isTwoPane) {
removeDisplayedFragment()
} else
finish()
}
override fun onDogSwiped() {
if (isTwoPane) {
removeDisplayedFragment()
}
}
}

@ -0,0 +1,77 @@
package fr.iut.ouafff.ui.activity
import android.content.Context
import android.content.Intent
import android.os.Bundle
import android.widget.LinearLayout
import androidx.activity.viewModels
import androidx.appcompat.app.AppCompatActivity
import androidx.viewpager2.widget.ViewPager2
import fr.iut.ouafff.R
import fr.iut.ouafff.data.NEW_DOG_ID
import fr.iut.ouafff.ui.fragment.DogFragment
import fr.iut.ouafff.ui.utils.DogPagerAdapter
import fr.iut.ouafff.ui.viewmodel.DogPagerViewModel
class DogPagerActivity : AppCompatActivity(), DogFragment.OnInteractionListener {
companion object {
private const val EXTRA_DOG_ID = "fr.iut.ouafff.extra_dog_id"
fun getIntent(context: Context, dogId: Long) =
Intent(context, DogPagerActivity::class.java).apply {
putExtra(EXTRA_DOG_ID, dogId)
}
}
private val pagerAdapter = DogPagerAdapter(this)
private val dogPagerVM by viewModels<DogPagerViewModel>()
private lateinit var viewPager: ViewPager2
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_pager)
setSupportActionBar(findViewById(R.id.toolbar_activity))
supportActionBar?.setDisplayHomeAsUpEnabled(true)
// Exemple de création d'un composant (ViewPager ici) en code
// avec id défini en ressource (ids.xml) et injection dans la vue à l'exécution
// … du coup pas de data binding disponible
viewPager = ViewPager2(this)
viewPager.id = R.id.view_pager
findViewById<LinearLayout>(R.id.pager_layout).addView(viewPager)
viewPager.adapter = pagerAdapter
dogPagerVM.currentDogId = savedInstanceState?.getLong(EXTRA_DOG_ID) ?: intent.getLongExtra(
EXTRA_DOG_ID,
NEW_DOG_ID
)
dogPagerVM.dogList.observe(this) {
pagerAdapter.submitList(it)
var position = pagerAdapter.positionFromId(dogPagerVM.currentDogId)
if (position == -1) position = 0
viewPager.currentItem = position
supportActionBar?.subtitle = getString(R.string.dogs_subtitle_format, position + 1)
}
viewPager.registerOnPageChangeCallback(object : ViewPager2.OnPageChangeCallback() {
override fun onPageSelected(position: Int) {
dogPagerVM.currentDogId = pagerAdapter.dogIdAt(position)
supportActionBar?.subtitle = getString(R.string.dogs_subtitle_format, position + 1)
}
})
}
override fun onSaveInstanceState(outState: Bundle) {
super.onSaveInstanceState(outState)
outState.putLong(EXTRA_DOG_ID, dogPagerVM.currentDogId)
}
override fun onDogSaved() = finish()
override fun onDogDeleted() = finish()
}

@ -0,0 +1,43 @@
package fr.iut.ouafff.ui.activity
import android.os.Bundle
import androidx.annotation.LayoutRes
import androidx.appcompat.app.AppCompatActivity
import androidx.fragment.app.Fragment
import fr.iut.ouafff.R
/**
* A base class to manage an activity hosting one fragment
* and an action bar.
*/
abstract class SimpleFragmentActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(getLayoutResId())
setSupportActionBar(findViewById(R.id.toolbar_activity))
if (supportFragmentManager.findFragmentById(R.id.container_fragment) == null) {
supportFragmentManager.beginTransaction()
.add(R.id.container_fragment, createFragment())
.commit()
}
}
/**
* Creates an instance of the hosted fragment
*/
protected abstract fun createFragment(): Fragment
/**
* Returns the resource id of the layout used for this activity.
* It must contain a view whose id is `@+id/container_fragment`
* to inject the hosted fragment's view
*/
@LayoutRes
protected abstract fun getLayoutResId(): Int
}

@ -0,0 +1,60 @@
package fr.iut.ouafff.ui.dialog
import android.app.Dialog
import android.os.Bundle
import android.view.LayoutInflater
import android.widget.DatePicker
import androidx.appcompat.app.AlertDialog
import androidx.appcompat.app.AppCompatDialogFragment
import androidx.core.os.bundleOf
import androidx.fragment.app.setFragmentResult
import fr.iut.ouafff.R
import java.util.*
class DatePickerFragment : AppCompatDialogFragment() {
companion object {
const val EXTRA_YEAR = "fr.iut.ouafff.year"
const val EXTRA_MONTH = "fr.iut.ouafff.month"
const val EXTRA_DAY = "fr.iut.ouafff.day"
private const val ARG_DATE = "date"
fun newInstance(requestKey: String, date: Date? = null) = DatePickerFragment().apply {
this.requestKey = requestKey
if (date != null)
arguments = Bundle().apply {
putLong(ARG_DATE, date.time)
}
}
}
private lateinit var requestKey: String
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
val view = LayoutInflater.from(activity).inflate(R.layout.dialog_date, null)
val calendar = Calendar.getInstance()
calendar.timeInMillis = arguments?.getLong(ARG_DATE) ?: Date().time
val year = calendar.get(Calendar.YEAR)
val month = calendar.get(Calendar.MONTH)
val day = calendar.get(Calendar.DAY_OF_MONTH)
val pickerDate = view as DatePicker
pickerDate.init(year, month, day, null)
return AlertDialog.Builder(view.context, R.style.NarrowDialog)
.setView(view)
.setPositiveButton(android.R.string.ok) { _, _ ->
setFragmentResult(
requestKey,
bundleOf(
EXTRA_YEAR to pickerDate.year,
EXTRA_MONTH to pickerDate.month,
EXTRA_DAY to pickerDate.dayOfMonth
)
)
}
.setNegativeButton(android.R.string.cancel, null)
.create()
}
}

@ -0,0 +1,199 @@
package fr.iut.ouafff.ui.fragment
import android.content.Context
import android.os.Bundle
import android.provider.ContactsContract
import android.view.*
import androidx.activity.result.contract.ActivityResultContracts
import androidx.activity.result.launch
import androidx.appcompat.app.AlertDialog
import androidx.core.os.bundleOf
import androidx.core.view.MenuProvider
import androidx.fragment.app.Fragment
import androidx.fragment.app.setFragmentResultListener
import androidx.lifecycle.Lifecycle
import androidx.lifecycle.ViewModelProvider
import androidx.lifecycle.get
import fr.iut.ouafff.R
import fr.iut.ouafff.data.NEW_DOG_ID
import fr.iut.ouafff.databinding.FragmentDogBinding
import fr.iut.ouafff.ui.dialog.DatePickerFragment
import fr.iut.ouafff.ui.utils.viewModelFactory
import fr.iut.ouafff.ui.viewmodel.DogViewModel
import java.util.Date
import java.util.Calendar
class DogFragment : Fragment() {
companion object {
private const val EXTRA_DOG_ID = "fr.iut.ouafff.extra_dogid"
private const val REQUEST_DATE = "DateRequest"
private const val DIALOG_DATE = "DateDialog"
fun newInstance(dogId: Long) = DogFragment().apply {
arguments = bundleOf(EXTRA_DOG_ID to dogId)
}
}
private var dogId: Long = NEW_DOG_ID
private lateinit var dogVM: DogViewModel
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setFragmentResultListener(REQUEST_DATE, this::onAdmissionDateChanged)
dogId = savedInstanceState?.getLong(EXTRA_DOG_ID) ?: arguments?.getLong(EXTRA_DOG_ID)
?: NEW_DOG_ID
if (dogId == NEW_DOG_ID) {
requireActivity().setTitle(R.string.title_add_dog)
}
dogVM = ViewModelProvider(this, viewModelFactory { DogViewModel(dogId) }).get()
}
override fun onSaveInstanceState(outState: Bundle) {
super.onSaveInstanceState(outState)
outState.putLong(EXTRA_DOG_ID, dogId)
}
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?
): View {
val binding = FragmentDogBinding.inflate(inflater)
binding.dogVM = dogVM
binding.lifecycleOwner = viewLifecycleOwner
binding.textDogOwner.setOnClickListener {
pickOwner.launch()
}
binding.textDogAdmissionDate.setOnClickListener {
val dateDialog =
DatePickerFragment.newInstance(REQUEST_DATE, dogVM.admissionDateLiveData.value)
dateDialog.show(parentFragmentManager, DIALOG_DATE)
}
return binding.root
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
setupMenu()
}
private fun setupMenu() {
requireActivity().addMenuProvider(object : MenuProvider {
override fun onPrepareMenu(menu: Menu) {
super.onPrepareMenu(menu)
if (dogId == NEW_DOG_ID) {
menu.findItem(R.id.action_delete)?.isVisible = false
}
}
override fun onCreateMenu(menu: Menu, menuInflater: MenuInflater) {
menuInflater.inflate(R.menu.fragment_dog, menu)
}
override fun onMenuItemSelected(menuItem: MenuItem): Boolean {
return when (menuItem.itemId) {
R.id.action_save -> {
saveDog()
true
}
R.id.action_delete -> {
deleteDog()
true
}
else -> false
}
}
}, viewLifecycleOwner, Lifecycle.State.RESUMED)
}
private fun saveDog() {
if (dogVM.saveDog() == true) {
listener?.onDogSaved()
} else {
AlertDialog.Builder(requireActivity())
.setTitle(R.string.create_dog_error_dialog_title)
.setMessage(R.string.create_dog_error_message)
.setNeutralButton(android.R.string.ok, null)
.show()
return
}
}
private fun deleteDog() {
if (dogId != NEW_DOG_ID) {
dogVM.deleteDog()
listener?.onDogDeleted()
}
}
private fun onAdmissionDateChanged(requestKey: String, bundle: Bundle) {
if (requestKey == REQUEST_DATE) {
val year = bundle.getInt(DatePickerFragment.EXTRA_YEAR)
val month = bundle.getInt(DatePickerFragment.EXTRA_MONTH)
val day = bundle.getInt(DatePickerFragment.EXTRA_DAY)
val cal = Calendar.getInstance()
cal.set(year, month, day)
dogVM.admissionDateLiveData.value = Date().apply { time = cal.timeInMillis }
}
}
private val pickOwner =
registerForActivityResult(ActivityResultContracts.PickContact()) { contactUri ->
if (contactUri != null) {
val queryFields = arrayOf(ContactsContract.Contacts.DISPLAY_NAME)
val contactCursor = activity?.contentResolver?.query(
contactUri, queryFields, null,
null, null
)
contactCursor?.let {
if (it.count != 0) {
it.moveToFirst()
dogVM.ownerLiveData.value = it.getString(0)
}
it.close()
}
}
}
interface OnInteractionListener {
fun onDogSaved()
fun onDogDeleted()
}
private var listener: OnInteractionListener? = null
override fun onAttach(context: Context) {
super.onAttach(context)
if (context is OnInteractionListener) {
listener = context
} else {
throw RuntimeException("$context must implement OnInteractionListener")
}
}
override fun onDetach() {
super.onDetach()
listener = null
}
}

@ -0,0 +1,129 @@
package fr.iut.ouafff.ui.fragment
import android.content.Context
import android.os.Bundle
import android.view.*
import androidx.core.view.MenuProvider
import androidx.fragment.app.Fragment
import androidx.fragment.app.viewModels
import androidx.lifecycle.Lifecycle
import androidx.recyclerview.widget.ItemTouchHelper
import androidx.recyclerview.widget.RecyclerView
import fr.iut.ouafff.R
import fr.iut.ouafff.databinding.FragmentListDogBinding
import fr.iut.ouafff.ui.utils.DogRecyclerViewAdapter
import fr.iut.ouafff.ui.viewmodel.DogListViewModel
class DogListFragment : Fragment(), DogRecyclerViewAdapter.Callbacks {
private val dogListAdapter = DogRecyclerViewAdapter(this)
private val dogListVM by viewModels<DogListViewModel>()
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?
): View {
val binding = FragmentListDogBinding.inflate(inflater)
binding.dogListVM = dogListVM
binding.lifecycleOwner = viewLifecycleOwner
with(binding.recyclerView) {
adapter = dogListAdapter
ItemTouchHelper(DogListItemTouchHelper()).attachToRecyclerView(this)
}
binding.fabAddDog.setOnClickListener { addNewDog() }
return binding.root
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
setupMenu()
dogListVM.dogList.observe(viewLifecycleOwner) {
dogListAdapter.submitList(it)
}
}
private fun setupMenu() {
requireActivity().addMenuProvider(object : MenuProvider {
override fun onCreateMenu(menu: Menu, menuInflater: MenuInflater) {
menuInflater.inflate(R.menu.fragment_list_dog, menu)
}
override fun onMenuItemSelected(menuItem: MenuItem): Boolean {
return when (menuItem.itemId) {
R.id.menu_item_new_dog -> {
addNewDog()
true
}
else -> false
}
}
}, viewLifecycleOwner, Lifecycle.State.RESUMED)
}
private fun addNewDog() {
listener?.onAddNewDog()
}
override fun onDogSelected(dogId: Long) {
listener?.onDogSelected(dogId)
}
private inner class DogListItemTouchHelper : ItemTouchHelper.Callback() {
override fun isLongPressDragEnabled() = false
override fun getMovementFlags(
recyclerView: RecyclerView,
viewHolder: RecyclerView.ViewHolder
) =
makeMovementFlags(
ItemTouchHelper.UP or ItemTouchHelper.DOWN,
ItemTouchHelper.START or ItemTouchHelper.END
)
override fun onMove(
recyclerView: RecyclerView,
viewHolder: RecyclerView.ViewHolder,
target: RecyclerView.ViewHolder
) = false
override fun onSwiped(viewHolder: RecyclerView.ViewHolder, direction: Int) {
(viewHolder as DogRecyclerViewAdapter.DogViewHolder).dog?.also {
dogListVM.delete(it)
listener?.onDogSwiped()
}
}
}
interface OnInteractionListener {
fun onDogSelected(dogId: Long)
fun onAddNewDog()
fun onDogSwiped()
}
private var listener: OnInteractionListener? = null
override fun onAttach(context: Context) {
super.onAttach(context)
if (context is OnInteractionListener) {
listener = context
} else {
throw RuntimeException("$context must implement OnInteractionListener")
}
}
override fun onDetach() {
super.onDetach()
listener = null
}
}

@ -0,0 +1,40 @@
package fr.iut.ouafff.ui.utils
import android.content.Context
import android.text.format.DateFormat
import android.view.View
import androidx.databinding.InverseMethod
import fr.iut.ouafff.R
import fr.iut.ouafff.data.Dog
import fr.iut.ouafff.data.persistance.converter.toGender
import java.util.*
object Converters {
@JvmStatic
@InverseMethod("stringToFloat")
fun floatToString(value: Float) = if (value == 0f) "" else value.toString()
@JvmStatic
fun stringToFloat(value: String) = if (value.isBlank()) 0f else value.toFloat()
@JvmStatic
@InverseMethod("intToGender")
fun genderToInt(value: Dog.Gender?) = value?.ordinal ?: 0
@JvmStatic
fun intToGender(value: Int) = value.toGender()
@JvmStatic
fun dateToString(context: Context, value: Date?) =
value?.let { DateFormat.getDateFormat(context).format(it) }
@JvmStatic
fun listEmptyToVisibility(empty: Boolean): Int {
return if (empty) View.VISIBLE else View.GONE
}
@JvmStatic
fun aggressivenessToColor(context: Context, value: Int?) = value?.let {
context.resources.getIntArray(R.array.aggressiveness_color)[it]
} ?: 0
}

@ -0,0 +1,24 @@
package fr.iut.ouafff.ui.utils
import androidx.fragment.app.FragmentActivity
import androidx.viewpager2.adapter.FragmentStateAdapter
import fr.iut.ouafff.data.Dog
import fr.iut.ouafff.data.NEW_DOG_ID
import fr.iut.ouafff.ui.fragment.DogFragment
class DogPagerAdapter(fragmentActivity: FragmentActivity) : FragmentStateAdapter(fragmentActivity) {
private var dogList = listOf<Dog>()
override fun getItemCount() = dogList.size
override fun createFragment(position: Int) = DogFragment.newInstance(dogList[position].id)
fun positionFromId(dogId: Long) = dogList.indexOfFirst { it.id == dogId }
fun dogIdAt(position: Int) = if (dogList.isEmpty()) NEW_DOG_ID else dogList[position].id
fun submitList(dogList: List<Dog>) {
this.dogList = dogList
notifyDataSetChanged()
}
}

@ -0,0 +1,49 @@
package fr.iut.ouafff.ui.utils
import android.view.LayoutInflater
import android.view.ViewGroup
import androidx.recyclerview.widget.DiffUtil
import androidx.recyclerview.widget.ListAdapter
import androidx.recyclerview.widget.RecyclerView
import fr.iut.ouafff.data.Dog
import fr.iut.ouafff.databinding.ItemListDogBinding
class DogRecyclerViewAdapter(private val listener: Callbacks) :
ListAdapter<Dog, DogRecyclerViewAdapter.DogViewHolder>(DiffUtilDogCallback) {
private object DiffUtilDogCallback : DiffUtil.ItemCallback<Dog>() {
override fun areItemsTheSame(oldItem: Dog, newItem: Dog) = oldItem.id == newItem.id
override fun areContentsTheSame(oldItem: Dog, newItem: Dog) = oldItem == newItem
}
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int) =
DogViewHolder(
ItemListDogBinding.inflate(LayoutInflater.from(parent.context)), listener
)
override fun onBindViewHolder(holder: DogViewHolder, position: Int) =
holder.bind(getItem(position))
class DogViewHolder(private val binding: ItemListDogBinding, listener: Callbacks) :
RecyclerView.ViewHolder(binding.root) {
val dog: Dog? get() = binding.dog
init {
itemView.setOnClickListener { dog?.let { listener.onDogSelected(it.id) } }
}
fun bind(dog: Dog) {
binding.dog = dog
binding.executePendingBindings()
}
}
interface Callbacks {
fun onDogSelected(dogId: Long)
}
}

@ -0,0 +1,13 @@
package fr.iut.ouafff.ui.utils
import androidx.lifecycle.ViewModel
import androidx.lifecycle.ViewModelProvider
/**
* Fonction factory permettant de créer des instances de ViewModelFactory pour
* alléger l'écriture lors de la récuperation d'une ViewModel qui prend des paramètres.
*/
@Suppress("UNCHECKED_CAST")
inline fun <VM : ViewModel> viewModelFactory(crossinline f: () -> VM) = object : ViewModelProvider.Factory {
override fun <T : ViewModel> create(modelClass: Class<T>): T = f() as T
}

@ -0,0 +1,18 @@
package fr.iut.ouafff.ui.viewmodel
import androidx.lifecycle.Transformations
import androidx.lifecycle.ViewModel
import androidx.lifecycle.viewModelScope
import fr.iut.ouafff.data.Dog
import fr.iut.ouafff.data.DogRepository
import fr.iut.ouafff.data.persistance.DogDatabase
import kotlinx.coroutines.launch
class DogListViewModel : ViewModel() {
private val dogRepo = DogRepository(DogDatabase.getInstance().dogDAO())
val dogList = dogRepo.getAll()
val showEmptyView = Transformations.map(dogList, List<Dog>::isEmpty)
fun delete(dog: Dog) = viewModelScope.launch { dogRepo.delete(dog) }
}

@ -0,0 +1,13 @@
package fr.iut.ouafff.ui.viewmodel
import androidx.lifecycle.ViewModel
import fr.iut.ouafff.data.NEW_DOG_ID
import fr.iut.ouafff.data.persistance.DogDatabase
import fr.iut.ouafff.data.DogRepository
class DogPagerViewModel : ViewModel() {
private val dogRepo = DogRepository(DogDatabase.getInstance().dogDAO())
val dogList = dogRepo.getAll()
var currentDogId = NEW_DOG_ID
}

@ -0,0 +1,56 @@
package fr.iut.ouafff.ui.viewmodel
import androidx.lifecycle.MediatorLiveData
import androidx.lifecycle.MutableLiveData
import androidx.lifecycle.ViewModel
import androidx.lifecycle.viewModelScope
import fr.iut.ouafff.data.Dog
import fr.iut.ouafff.data.DogRepository
import fr.iut.ouafff.data.NEW_DOG_ID
import fr.iut.ouafff.data.persistance.DogDatabase
import kotlinx.coroutines.launch
import java.util.Date
class DogViewModel(dogId: Long) : ViewModel() {
private val dogRepo = DogRepository(DogDatabase.getInstance().dogDAO())
val dog = if (dogId == NEW_DOG_ID) MutableLiveData(Dog()) else dogRepo.findById(dogId)
fun saveDog() = dog.value?.let {
if (it.name.isBlank() || it.weight == 0f)
false
else {
viewModelScope.launch {
if (it.id == NEW_DOG_ID) dogRepo.insert(it) else dogRepo.update(it)
}
true
}
}
fun deleteDog() = viewModelScope.launch {
dog.value?.let { if (it.id != NEW_DOG_ID) dogRepo.delete(it) }
}
val admissionDateLiveData = MediatorLiveData<Date?>()
init {
admissionDateLiveData.addSource(dog) { admissionDateLiveData.postValue(it?.admissionDate) }
admissionDateLiveData.observeForever { newDate ->
dog.value?.let {
if (it.admissionDate != newDate)
it.admissionDate = newDate
}
}
}
val ownerLiveData = MediatorLiveData<String?>()
init {
ownerLiveData.addSource(dog) { ownerLiveData.postValue(it?.owner) }
ownerLiveData.observeForever { newOwner ->
dog.value?.let {
if (it.owner != newOwner)
it.owner = newOwner
}
}
}
}

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#727272"
android:pathData="M19,13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/>
</vector>

@ -0,0 +1,43 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportHeight="47.625"
android:viewportWidth="47.625">
<path
android:fillAlpha="1"
android:fillColor="#FFFFFFFF"
android:pathData="m24.08,45.6c4.68,-0.08 9.76,-0.44 13.6,-3.43 3.15,-2.62 3.73,-7.22 2.72,-10.98 -1.86,-7.54 -9.73,-12.82 -17.39,-12.16 -6.89,0.38 -13.57,5.25 -15.23,12.09 -1.01,3.72 -0.5,8.25 2.57,10.9 3.75,3.2 9.03,3.46 13.73,3.58"
android:strokeAlpha="1"
android:strokeColor="#00000000"
android:strokeLineCap="butt"
android:strokeLineJoin="miter"
android:strokeWidth="0.17870538" />
<path
android:fillAlpha="1"
android:fillColor="#FFFFFFFF"
android:pathData="M16.57,6.94m-4.9,0a4.9,4.9 0,1 1,9.79 0a4.9,4.9 0,1 1,-9.79 0"
android:strokeAlpha="1"
android:strokeColor="#00000000"
android:strokeWidth="0.17870538" />
<path
android:fillAlpha="1"
android:fillColor="#FFFFFFFF"
android:pathData="M31.08,6.92m-4.9,0a4.9,4.9 0,1 1,9.79 0a4.9,4.9 0,1 1,-9.79 0"
android:strokeAlpha="1"
android:strokeColor="#00000000"
android:strokeWidth="0.17870538" />
<path
android:fillAlpha="1"
android:fillColor="#FFFFFFFF"
android:pathData="M6.89,16.59m-4.9,0a4.9,4.9 0,1 1,9.79 0a4.9,4.9 0,1 1,-9.79 0"
android:strokeAlpha="1"
android:strokeColor="#00000000"
android:strokeWidth="0.17870538" />
<path
android:fillAlpha="1"
android:fillColor="#FFFFFFFF"
android:pathData="M40.74,16.59m-4.9,0a4.9,4.9 0,1 1,9.79 0a4.9,4.9 0,1 1,-9.79 0"
android:strokeAlpha="1"
android:strokeColor="#00000000"
android:strokeWidth="0.17870538" />
</vector>

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V7H6v12zM19,4h-3.5l-1,-1h-5l-1,1H5v2h14V4z"/>
</vector>

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M9,16.2L4.8,12l-1.4,1.4L9,19 21,7l-1.4,-1.4L9,16.2z"/>
</vector>

@ -0,0 +1,49 @@
<vector android:height="105dp" android:viewportHeight="105.9596"
android:viewportWidth="151.06255" android:width="150dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillAlpha="1" android:fillColor="#ffecb2"
android:pathData="M116.4,23.99m-23.99,0a23.99,23.99 0,1 1,47.97 0a23.99,23.99 0,1 1,-47.97 0"
android:strokeAlpha="1" android:strokeColor="#00000000" android:strokeWidth="0.96375841"/>
<path android:fillAlpha="1" android:fillColor="#586a7e"
android:pathData="M-0,21.1h119.63v8.52h-119.63z"
android:strokeAlpha="1" android:strokeColor="#00000000" android:strokeWidth="1"/>
<path android:fillAlpha="1" android:fillColor="#92a7bd"
android:pathData="M3.22,29.62h113.19v4.27h-113.19z"
android:strokeAlpha="1" android:strokeColor="#00000000" android:strokeWidth="1"/>
<path android:fillAlpha="1" android:fillColor="#abc0d7"
android:pathData="M3.22,33.89h113.19v72.07h-113.19z"
android:strokeAlpha="1" android:strokeColor="#00000000" android:strokeWidth="1"/>
<path android:fillAlpha="1" android:fillColor="#586a7e"
android:pathData="m59.82,60.13a24.29,22.07 0,0 0,-24.29 22.07,24.29 22.07,0 0,0 0,0v23.76h48.59L84.11,82.2a24.29,22.07 0,0 0,0 -0,24.29 22.07,0 0,0 -24.29,-22.07z"
android:strokeAlpha="1" android:strokeColor="#00000000" android:strokeWidth="1.18381763"/>
<path android:fillAlpha="1" android:fillColor="#2b3d4d"
android:pathData="m59.82,64.43a20,20 0,0 0,-20 20,20 20,0 0,0 0,0L39.82,105.96L79.82,105.96L79.82,84.43a20,20 0,0 0,0 -0,20 20,0 0,0 -20,-20z"
android:strokeAlpha="1" android:strokeColor="#00000000" android:strokeWidth="1.02245367"/>
<path android:fillAlpha="1" android:fillColor="#22303d"
android:pathData="M39.82,105.96L79.82,105.96L79.82,86.84Z"
android:strokeAlpha="1" android:strokeColor="#00000000"
android:strokeLineCap="butt" android:strokeLineJoin="miter" android:strokeWidth="0.26458332"/>
<path android:fillAlpha="1" android:fillColor="#586a7e"
android:pathData="m59.91,54.99c1.73,-0.03 3.6,-0.16 5.01,-1.26 1.16,-0.96 1.38,-2.66 1,-4.05 -0.69,-2.78 -3.59,-4.72 -6.41,-4.48 -2.54,0.14 -5,1.94 -5.61,4.46 -0.37,1.37 -0.18,3.04 0.95,4.02 1.38,1.18 3.33,1.27 5.06,1.32"
android:strokeAlpha="1" android:strokeColor="#00000000"
android:strokeLineCap="butt" android:strokeLineJoin="miter" android:strokeWidth="0.06586754"/>
<path android:fillAlpha="1" android:fillColor="#586a7e"
android:pathData="M57.15,40.74m-1.8,0a1.8,1.8 0,1 1,3.61 0a1.8,1.8 0,1 1,-3.61 0"
android:strokeAlpha="1" android:strokeColor="#00000000" android:strokeWidth="0.06586754"/>
<path android:fillAlpha="1" android:fillColor="#586a7e"
android:pathData="M62.49,40.73m-1.8,0a1.8,1.8 0,1 1,3.61 0a1.8,1.8 0,1 1,-3.61 0"
android:strokeAlpha="1" android:strokeColor="#00000000" android:strokeWidth="0.06586754"/>
<path android:fillAlpha="1" android:fillColor="#586a7e"
android:pathData="M53.58,44.3m-1.8,0a1.8,1.8 0,1 1,3.61 0a1.8,1.8 0,1 1,-3.61 0"
android:strokeAlpha="1" android:strokeColor="#00000000" android:strokeWidth="0.06586754"/>
<path android:fillAlpha="1" android:fillColor="#586a7e"
android:pathData="M66.05,44.3m-1.8,0a1.8,1.8 0,1 1,3.61 0a1.8,1.8 0,1 1,-3.61 0"
android:strokeAlpha="1" android:strokeColor="#00000000" android:strokeWidth="0.06586754"/>
<path android:fillAlpha="1" android:fillColor="#a3b7ce"
android:pathData="m105,84.86c-2.55,0.11 -4.55,2.32 -4.8,4.78 -1.19,5.44 -2.38,10.88 -3.57,16.32h19.79L116.41,84.86Z"
android:strokeAlpha="1" android:strokeColor="#00000000"
android:strokeLineCap="butt" android:strokeLineJoin="miter" android:strokeWidth="0.27995262"/>
<path android:fillAlpha="1" android:fillColor="#bfd9f5"
android:pathData="m106.03,86.02c-2.41,0.11 -4.3,2.2 -4.54,4.52 -1.13,5.14 -2.25,10.28 -3.38,15.42 17.65,0 35.3,0 52.95,0 -1.15,-5.47 -2.28,-10.94 -3.43,-16.4 -0.59,-2.4 -3.1,-3.82 -5.47,-3.54 -12.04,0 -24.09,0 -36.13,0z"
android:strokeAlpha="1" android:strokeColor="#00000000"
android:strokeLineCap="butt" android:strokeLineJoin="miter" android:strokeWidth="0.26458332"/>
</vector>

@ -0,0 +1,46 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="64dp"
android:height="64dp"
android:viewportWidth="96.21212"
android:viewportHeight="96.21212">
<group android:translateX="24.29356"
android:translateY="24.29356">
<path
android:pathData="m24.08,45.6c4.68,-0.08 9.76,-0.44 13.6,-3.43 3.15,-2.62 3.73,-7.22 2.72,-10.98 -1.86,-7.54 -9.73,-12.82 -17.39,-12.16 -6.89,0.38 -13.57,5.25 -15.23,12.09 -1.01,3.72 -0.5,8.25 2.57,10.9 3.75,3.2 9.03,3.46 13.73,3.58"
android:strokeLineCap="butt"
android:fillAlpha="1"
android:strokeColor="#00000000"
android:fillColor="#F0514B"
android:strokeWidth="0.17870538"
android:strokeLineJoin="miter"
android:strokeAlpha="1"/>
<path
android:pathData="M16.57,6.94m-4.9,0a4.9,4.9 0,1 1,9.79 0a4.9,4.9 0,1 1,-9.79 0"
android:fillAlpha="1"
android:strokeColor="#00000000"
android:fillColor="#F0514B"
android:strokeWidth="0.17870538"
android:strokeAlpha="1"/>
<path
android:pathData="M31.08,6.92m-4.9,0a4.9,4.9 0,1 1,9.79 0a4.9,4.9 0,1 1,-9.79 0"
android:fillAlpha="1"
android:strokeColor="#00000000"
android:fillColor="#F0514B"
android:strokeWidth="0.17870538"
android:strokeAlpha="1"/>
<path
android:pathData="M6.89,16.59m-4.9,0a4.9,4.9 0,1 1,9.79 0a4.9,4.9 0,1 1,-9.79 0"
android:fillAlpha="1"
android:strokeColor="#00000000"
android:fillColor="#F0514B"
android:strokeWidth="0.17870538"
android:strokeAlpha="1"/>
<path
android:pathData="M40.74,16.59m-4.9,0a4.9,4.9 0,1 1,9.79 0a4.9,4.9 0,1 1,-9.79 0"
android:fillAlpha="1"
android:strokeColor="#00000000"
android:fillColor="#F0514B"
android:strokeWidth="0.17870538"
android:strokeAlpha="1"/>
</group>
</vector>

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#727272"
android:pathData="M12,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM12,14c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-2.66 -5.33,-4 -8,-4z"/>
</vector>

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#727272"
android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12.5,7H11v6l5.25,3.15 0.75,-1.23 -4.5,-2.67z"/>
</vector>

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false"
android:orientation="horizontal"
android:showDividers="middle"
android:divider="?android:attr/dividerVertical">
<FrameLayout
android:id="@+id/container_fragment"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3" />
<FrameLayout
android:id="@+id/container_fragment_detail"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="7" />
</LinearLayout>

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/pager_layout">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar_activity"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:elevation="@dimen/toolbar_elevation"
android:theme="@style/Theme.Ouafff.AppBarOverlay"
app:popupTheme="@style/Theme.Ouafff.PopupOverlay"
app:titleMarginStart="@dimen/icon_title_space" />
</LinearLayout>

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<DatePicker xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

@ -0,0 +1,167 @@
<?xml version="1.0" encoding="utf-8"?>
<layout 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">
<data>
<import type="fr.iut.ouafff.ui.utils.Converters" />
<variable
name="dogVM"
type="fr.iut.ouafff.ui.viewmodel.DogViewModel" />
</data>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/activity_margin"
tools:context=".ui.activity.DogActivity">
<androidx.constraintlayout.widget.Barrier
android:id="@+id/barrier"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:barrierDirection="right"
app:constraint_referenced_ids="text_overview,text_gender,text_measurement,text_aggressiveness,text_misc" />
<TextView
android:id="@+id/text_overview"
style="@style/CategoryStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/category_overview"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<EditText
android:id="@+id/edit_dog_name"
style="@style/EditorFieldStyle"
android:layout_width="0dp"
android:hint="@string/hint_dog_name"
android:importantForAutofill="no"
android:inputType="textCapWords"
android:text="@={dogVM.dog.name}"
app:layout_constraintBaseline_toBaselineOf="@+id/text_overview"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/barrier" />
<EditText
android:id="@+id/edit_dog_breed"
style="@style/EditorFieldStyle"
android:layout_width="0dp"
android:hint="@string/hint_dog_breed"
android:importantForAutofill="no"
android:inputType="textCapWords"
android:text="@={dogVM.dog.breed}"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/barrier"
app:layout_constraintTop_toBottomOf="@+id/edit_dog_name" />
<TextView
android:id="@+id/text_gender"
style="@style/CategoryStyle"
android:layout_width="wrap_content"
android:text="@string/category_gender"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/edit_dog_breed" />
<Spinner
android:id="@+id/spinner_gender"
android:layout_width="wrap_content"
android:layout_height="@dimen/large_space"
android:entries="@array/array_gender_options"
android:selectedItemPosition="@={Converters.genderToInt(dogVM.dog.gender)}"
android:spinnerMode="dropdown"
app:layout_constraintStart_toEndOf="@id/barrier"
app:layout_constraintTop_toTopOf="@+id/text_gender" />
<TextView
android:id="@+id/text_measurement"
style="@style/CategoryStyle"
android:layout_width="wrap_content"
android:text="@string/category_measurement"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/spinner_gender" />
<EditText
android:id="@+id/edit_dog_weight"
style="@style/EditorFieldStyle"
android:layout_width="0dp"
android:hint="@string/hint_dog_weight"
android:importantForAutofill="no"
android:inputType="numberDecimal"
android:text="@={Converters.floatToString(dogVM.dog.weight)}"
app:layout_constraintBaseline_toBaselineOf="@+id/text_measurement"
app:layout_constraintEnd_toStartOf="@id/label_weight_unit"
app:layout_constraintStart_toEndOf="@id/barrier" />
<TextView
android:id="@+id/label_weight_unit"
style="@style/EditorUnitsStyle"
android:layout_width="wrap_content"
android:text="@string/unit_dog_weight"
app:layout_constraintBaseline_toBaselineOf="@+id/text_measurement"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/edit_dog_weight" />
<TextView
android:id="@+id/text_aggressiveness"
style="@style/CategoryStyle"
android:layout_width="wrap_content"
android:text="@string/category_aggressiveness"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/edit_dog_weight" />
<RatingBar
android:id="@+id/ratingbar_aggressiveness"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:numStars="3"
android:rating="@={(float) dogVM.dog.aggressiveness}"
android:stepSize="1"
app:layout_constraintStart_toEndOf="@id/barrier"
app:layout_constraintTop_toTopOf="@+id/text_aggressiveness" />
<TextView
android:id="@+id/text_misc"
style="@style/CategoryStyle"
android:layout_width="wrap_content"
android:layout_marginTop="@dimen/large_space"
android:text="@string/category_misc"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/ratingbar_aggressiveness" />
<TextView
android:id="@+id/text_dog_owner"
style="@style/EditorTextStyle"
android:layout_width="0dp"
android:hint="@string/hint_dog_owner"
android:text="@{dogVM.ownerLiveData}"
app:drawableEndCompat="@drawable/ic_person"
app:drawableRightCompat="@drawable/ic_person"
app:layout_constraintBaseline_toBaselineOf="@+id/text_misc"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/barrier" />
<TextView
android:id="@+id/text_dog_admission_date"
style="@style/EditorTextStyle"
android:layout_width="0dp"
android:hint="@string/hint_dog_admission_date"
android:paddingTop="@dimen/medium_space"
android:text="@{Converters.dateToString(context, dogVM.admissionDateLiveData)}"
app:drawableEndCompat="@drawable/ic_time"
app:drawableRightCompat="@drawable/ic_time"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/barrier"
app:layout_constraintTop_toBottomOf="@+id/text_dog_owner" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
</layout>

@ -0,0 +1,80 @@
<?xml version="1.0" encoding="utf-8"?>
<layout 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">
<data>
<import type="android.view.View" />
<variable
name="dogListVM"
type="fr.iut.ouafff.ui.viewmodel.DogListViewModel" />
</data>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.activity.DogListActivity">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
app:spanCount="2"
tools:listitem="@layout/item_list_dog" />
<androidx.constraintlayout.widget.Group
android:id="@+id/group_empty_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="@{dogListVM.showEmptyView ? View.VISIBLE : View.GONE}"
app:constraint_referenced_ids="shelter_icon,empty_view_title,empty_view_subtitle" />
<ImageView
android:id="@+id/shelter_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/empty_view_subtitle_text"
android:src="@drawable/ic_empty_shelter"
app:layout_constraintBottom_toTopOf="@+id/empty_view_title"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent" />
<TextView
android:id="@+id/empty_view_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="sans-serif-medium"
android:paddingTop="@dimen/medium_space"
android:text="@string/empty_view_title_text"
android:textAppearance="?android:textAppearanceMedium"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/empty_view_subtitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:paddingTop="@dimen/small_space"
android:text="@string/empty_view_subtitle_text"
android:textAppearance="?android:textAppearanceSmall"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/empty_view_title" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab_add_dog"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/activity_margin"
android:contentDescription="@string/new_dog_accessibility_text"
android:src="@drawable/ic_add_pet"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>

@ -0,0 +1,50 @@
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<data>
<import type="fr.iut.ouafff.ui.utils.Converters" />
<variable
name="dog"
type="fr.iut.ouafff.data.Dog" />
</data>
<androidx.cardview.widget.CardView
android:id="@+id/cardview_dog"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="2dp"
card_view:cardBackgroundColor="@{Converters.aggressivenessToColor(context,dog.aggressiveness)}"
card_view:cardUseCompatPadding="true">
<LinearLayout
android:id="@+id/layout_cardview_dog"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="@dimen/activity_margin">
<TextView
android:id="@+id/view_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="sans-serif-medium"
android:text="@{dog.name}"
android:textAppearance="?android:textAppearanceMedium"
android:textColor="@color/text_black"
tools:text="Dog's Name" />
<TextView
android:id="@+id/view_breed"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{dog.breed.empty ? @string/unknown_breed : dog.breed}"
android:textAppearance="?android:textAppearanceSmall"
android:textColor="@color/text_black_lighter"
tools:text="Breed" />
</LinearLayout>
</androidx.cardview.widget.CardView>
</layout>

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="vertical"
tools:context=".ui.activity.DogActivity">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar_activity"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:elevation="@dimen/toolbar_elevation"
android:theme="@style/Theme.Ouafff.AppBarOverlay"
app:popupTheme="@style/Theme.Ouafff.PopupOverlay"
app:titleMarginStart="@dimen/icon_title_space" />
<FrameLayout
android:id="@+id/container_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="vertical"
tools:context=".ui.activity.DogListActivity">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar_activity"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:elevation="@dimen/toolbar_elevation"
android:theme="@style/Theme.Ouafff.AppBarOverlay"
app:popupTheme="@style/Theme.Ouafff.PopupOverlay"
app:titleMarginStart="@dimen/icon_title_space" />
<include layout="@layout/toolbar_md_activity_content" />
</LinearLayout>

@ -0,0 +1,4 @@
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_save"
android:icon="@drawable/ic_done"
android:title="@string/action_save"
app:showAsAction="always"/>
<item
android:id="@+id/action_delete"
android:icon="@drawable/ic_delete"
android:title="@string/action_delete"
app:showAsAction="ifRoom"/>
</menu>

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/menu_item_new_dog"
android:icon="@drawable/ic_add"
android:title="@string/new_dog"
app:showAsAction="never"/>
</menu>

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Ouafff</string>
<string name="title_dog_detail">Détail du chien</string>
<string name="new_dog">Nouveau chien</string>
<string name="dogs_subtitle_format">Chien %d</string>
<string name="dialog_date_title">Date d\'admission</string>
<string name="dog_deleted">Chien supprimé</string>
<string name="delete_dog_failed">Impossible de supprimer le chien</string>
<string name="action_save">Sauvegarder</string>
<string name="action_delete">Supprimer</string>
<string name="unknown_uri_error">"URL inconnue : "</string>
<string name="insertion_uri_error">"Insertion non autorisée dans : "</string>
<string name="update_uri_error">"Mise à jour non autorisée dans : "</string>
<string name="delete_uri_error">"Suppression non autorisée dans : "</string>
<string name="title_add_dog">Ajouter un chien</string>
<string name="category_gender">Genre</string>
<string name="category_overview">Identité</string>
<string name="category_measurement">Mesure</string>
<string name="category_aggressiveness">Agressivité</string>
<string name="category_misc">Divers</string>
<string name="hint_dog_name">Nom</string>
<string name="hint_dog_breed">Race</string>
<string name="hint_dog_weight">Poids</string>
<string name="unit_dog_weight">kg</string>
<string name="hint_dog_owner">Propriétaire</string>
<string name="hint_dog_admission_date">Date d\'admission</string>
<string name="gender_unknown">Inconnu</string>
<string name="gender_male">Mâle</string>
<string name="gender_female">Femelle</string>
<string name="unknown_breed">Race inconnue</string>
<string name="empty_view_title_text">C\'est un peu vide par ici…</string>
<string name="empty_view_subtitle_text">Commençons par ajouter un chien</string>
<string name="create_dog_error_dialog_title">Impossible de créer le chien</string>
<string name="create_dog_error_message">Le nom du chien et son poids ne peuvent pas être vides.</string>
<string name="new_dog_accessibility_text">Un bouton de raccourci pour ajouter un nouveau chien</string>
</resources>

@ -0,0 +1,16 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.Ouafff" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/red</item>
<item name="colorPrimaryVariant">@color/colorBad</item>
<item name="colorOnPrimary">@color/black</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">@color/colorNormal</item>
<item name="colorSecondaryVariant">@color/colorNormal</item>
<item name="colorOnSecondary">@color/black</item>
<!-- Status bar color. -->
<item name="android:statusBarColor" tools:targetApi="21">?attr/colorPrimaryVariant</item>
<!-- Customize your theme here. -->
</style>
</resources>

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- These are the options displayed in the gender drop-down Spinner -->
<!-- They MUST match the Dog.Gender enum order -->
<string-array name="array_gender_options">
<item>@string/gender_unknown</item>
<item>@string/gender_male</item>
<item>@string/gender_female</item>
</string-array>
<!-- These are the colors displayed in the recyclerview's items -->
<!-- Their position in the array MUST match the dog's aggressiveness rating -->
<array name="aggressiveness_color">
<item>@color/colorNice</item>
<item>@color/colorNormal</item>
<item>@color/colorBad</item>
<item>@color/colorDevil</item>
</array>
</resources>

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="red">#F0514B</color>
<color name="red_darker">#C0403C</color>
<color name="text_black">#212121</color>
<color name="text_black_lighter">#727272</color>
<color name="white">#FFFFFF</color>
<color name="black">#000000</color>
<color name="ic_launcher_background">@color/white</color>
<!-- Editor colors -->
<color name="editorColorPrimary">#2D3640</color>
<color name="editorColorPrimaryDark">#394450</color>
<!-- Cards color -->
<color name="colorDevil">@color/red</color>
<color name="colorBad">#FFAC40</color>
<color name="colorNormal">#FFEE58</color>
<color name="colorNice">@color/white</color>
</resources>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Common margin value used throughout the app -->
<dimen name="activity_margin">16dp</dimen>
<dimen name="text_margin">16dp</dimen>
<dimen name="toolbar_elevation">4dp</dimen>
<!-- Common spaces used throughout the app -->
<dimen name="large_space">48dp</dimen>
<dimen name="medium_space">16dp</dimen>
<dimen name="small_space">8dp</dimen>
<dimen name="icon_title_space">32dp</dimen>
</resources>

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<item type="id" name="view_pager" />
</resources>

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Ouafff</string>
<string name="title_dog_detail">Dog detail</string>
<string name="new_dog">New dog</string>
<string name="dogs_subtitle_format">Dog %d</string>
<string name="dialog_date_title"> Admission date of the dog:</string>
<string name="dog_deleted">Dog deleted</string>
<string name="delete_dog_failed">Fail to delete dog</string>
<string name="action_save">Save</string>
<string name="action_delete">Delete</string>
<string name="unknown_uri_error">"Unknown URI: "</string>
<string name="insertion_uri_error">"Insertion not allowed in: "</string>
<string name="update_uri_error">"Update not allowed: "</string>
<string name="delete_uri_error">"Delete not allowed: "</string>
<string name="title_add_dog">Add a dog</string>
<string name="category_overview">Overview</string>
<string name="category_gender">Gender</string>
<string name="category_measurement">Measurement</string>
<string name="category_aggressiveness">Aggressiveness</string>
<string name="category_misc">Miscellaneous</string>
<string name="hint_dog_name">Name</string>
<string name="hint_dog_breed">Breed</string>
<string name="hint_dog_weight">Weight</string>
<string name="unit_dog_weight">kg</string>
<string name="hint_dog_owner">Owner</string>
<string name="hint_dog_admission_date">Admission date</string>
<string name="gender_unknown">Unknown</string>
<string name="gender_male">Male</string>
<string name="gender_female">Female</string>
<string name="unknown_breed">Unknown breed</string>
<string name="empty_view_title_text">It\'s a bit lonely here…</string>
<string name="empty_view_subtitle_text">Get started by adding a pet</string>
<string name="create_dog_error_dialog_title">Cannot create the dog</string>
<string name="create_dog_error_message">Dog\'s name and weight cannot be empty.</string>
<string name="new_dog_accessibility_text">A shortcut button to add a new dog</string>
</resources>

@ -0,0 +1,72 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.Ouafff" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/red</item>
<item name="colorPrimaryVariant">@color/red_darker</item>
<item name="colorOnPrimary">@color/white</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">@color/red</item>
<item name="colorSecondaryVariant">@color/colorBad</item>
<item name="colorOnSecondary">?attr/colorOnPrimary</item>
<!-- Status bar color. -->
<item name="android:statusBarColor" tools:targetApi="21">?attr/colorPrimaryVariant</item>
<!-- Customize your theme here. -->
</style>
<style name="Theme.Ouafff.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="Theme.Ouafff.AppBarOverlay" parent="ThemeOverlay.MaterialComponents.Dark.ActionBar" />
<style name="Theme.Ouafff.PopupOverlay" parent="ThemeOverlay.MaterialComponents.Light" />
<!-- A narrower dialog (wrap its content) than the default MaterialComponents theme
Useful to correctly display the DatePicker Dialog without extra blank space -->
<style name="NarrowDialog" parent="Theme.MaterialComponents.DayNight.Dialog.Alert">
<item name="android:windowMinWidthMajor">0dp</item>
<item name="android:windowMinWidthMinor">0dp</item>
</style>
<!-- Theme of the editor -->
<style name="EditorTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar">
<item name="colorPrimary">@color/editorColorPrimary</item>
<item name="colorPrimaryDark">@color/editorColorPrimaryDark</item>
<item name="colorAccent">@color/red</item>
</style>
<!-- Style for a category in the editor -->
<style name="CategoryStyle">
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_width">0dp</item>
<item name="android:layout_weight">1</item>
<item name="android:paddingTop">@dimen/medium_space</item>
<item name="android:paddingRight">@dimen/medium_space</item>
<item name="android:textColor">@color/red</item>
<item name="android:fontFamily">sans-serif-medium</item>
<item name="android:textAppearance">?android:textAppearanceSmall</item>
</style>
<!-- Style for an EditText field in the editor -->
<style name="EditorFieldStyle">
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_width">match_parent</item>
<item name="android:textAppearance">?android:textAppearanceMedium</item>
</style>
<!-- Style for a TextView in the editor -->
<style name="EditorTextStyle">
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:textAppearance">?android:textAppearanceMedium</item>
</style>
<!-- Style for the measurement units for an EditText field in the editor -->
<style name="EditorUnitsStyle">
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:textAppearance">?android:textAppearanceSmall</item>
</style>
</resources>

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?><!--
Sample backup rules file; uncomment and customize as necessary.
See https://developer.android.com/guide/topics/data/autobackup
for details.
Note: This file is ignored for devices older that API 31
See https://developer.android.com/about/versions/12/backup-restore
-->
<full-backup-content>
<!--
<include domain="sharedpref" path="."/>
<exclude domain="sharedpref" path="device.xml"/>
-->
</full-backup-content>

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?><!--
Sample data extraction rules file; uncomment and customize as necessary.
See https://developer.android.com/about/versions/12/backup-restore#xml-changes
for details.
-->
<data-extraction-rules>
<cloud-backup>
<!-- TODO: Use <include> and <exclude> to control what is backed up.
<include .../>
<exclude .../>
-->
</cloud-backup>
<!--
<device-transfer>
<include .../>
<exclude .../>
</device-transfer>
-->
</data-extraction-rules>

@ -0,0 +1,17 @@
package fr.iut.ouafff
import org.junit.Test
import org.junit.Assert.*
/**
* Example local unit test, which will execute on the development machine (host).
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
class ExampleUnitTest {
@Test
fun addition_isCorrect() {
assertEquals(4, 2 + 2)
}
}

@ -0,0 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.3.1' apply false
id 'com.android.library' version '7.3.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
}

@ -0,0 +1,23 @@
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app's APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
# Enables namespacing of each library's R class so that its R class includes only the
# resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true

@ -0,0 +1,6 @@
#Mon Dec 19 12:14:28 CET 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

@ -0,0 +1,185 @@
#!/usr/bin/env sh
#
# Copyright 2015 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
##############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null
APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"
warn () {
echo "$*"
}
die () {
echo
echo "$*"
echo
exit 1
}
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "`uname`" in
CYGWIN* )
cygwin=true
;;
Darwin* )
darwin=true
;;
MINGW* )
msys=true
;;
NONSTOP* )
nonstop=true
;;
esac
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD="$JAVA_HOME/jre/sh/java"
else
JAVACMD="$JAVA_HOME/bin/java"
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD="java"
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
MAX_FD_LIMIT=`ulimit -H -n`
if [ $? -eq 0 ] ; then
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
MAX_FD="$MAX_FD_LIMIT"
fi
ulimit -n $MAX_FD
if [ $? -ne 0 ] ; then
warn "Could not set maximum file descriptor limit: $MAX_FD"
fi
else
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
fi
fi
# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi
# For Cygwin or MSYS, switch paths to Windows format before running java
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
JAVACMD=`cygpath --unix "$JAVACMD"`
# We build the pattern for arguments to be converted via cygpath
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
SEP=""
for dir in $ROOTDIRSRAW ; do
ROOTDIRS="$ROOTDIRS$SEP$dir"
SEP="|"
done
OURCYGPATTERN="(^($ROOTDIRS))"
# Add a user-defined pattern to the cygpath arguments
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
fi
# Now convert the arguments - kludge to limit ourselves to /bin/sh
i=0
for arg in "$@" ; do
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
else
eval `echo args$i`="\"$arg\""
fi
i=`expr $i + 1`
done
case $i in
0) set -- ;;
1) set -- "$args0" ;;
2) set -- "$args0" "$args1" ;;
3) set -- "$args0" "$args1" "$args2" ;;
4) set -- "$args0" "$args1" "$args2" "$args3" ;;
5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
esac
fi
# Escape application args
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}
APP_ARGS=`save "$@"`
# Collect all arguments for the java command, following the shell quoting and substitution rules
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
exec "$JAVACMD" "$@"

@ -0,0 +1,89 @@
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto execute
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto execute
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega

@ -0,0 +1,16 @@
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "Ouafff"
include ':app'
Loading…
Cancel
Save