mobile app v1 + backend server

This commit is contained in:
Odweta
2024-01-26 16:08:27 +01:00
parent 860c4bf503
commit 8cedbc1c15
49 changed files with 765 additions and 741 deletions
@@ -0,0 +1,43 @@
<?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/cal_week_root"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<Button
android:id="@+id/refreshButton"
android:layout_width="105dp"
android:layout_height="53dp"
android:onClick="onLaunch"
android:text="Refresh"
app:layout_constraintBottom_toTopOf="@+id/dayPager"
app:layout_constraintEnd_toStartOf="@+id/dayPager"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0" />
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/dayPager"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!--
<TextView
android:id="@+id/loadingTextView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="@string/cal_week_loading"
android:textAlignment="center"
android:textSize="34sp" />
-->
<FrameLayout
android:id="@+id/fragmentContainer"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</androidx.constraintlayout.widget.ConstraintLayout>