forked from github/szkolny
433 lines
20 KiB
XML
433 lines
20 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Copyright (c) Kuba Szczodrzyński 2019-11-11.
|
|
-->
|
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
<data>
|
|
<import type="android.view.View"/>
|
|
<import type="pl.szczodrzynski.edziennik.App"/>
|
|
<variable
|
|
name="annotationVisible"
|
|
type="boolean"/>
|
|
<variable
|
|
name="lesson"
|
|
type="pl.szczodrzynski.edziennik.data.db.full.LessonFull" />
|
|
<variable name="oldSubjectName" type="String" />
|
|
<variable name="subjectName" type="String" />
|
|
<variable name="oldTeacherName" type="String" />
|
|
<variable name="teacherName" type="String" />
|
|
<variable name="oldClassroom" type="String" />
|
|
<variable name="classroom" type="String" />
|
|
<variable name="oldTeamName" type="String" />
|
|
<variable name="teamName" type="String" />
|
|
</data>
|
|
<androidx.core.widget.NestedScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingHorizontal="16dp"
|
|
android:paddingTop="24dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="8dp"
|
|
android:baselineAligned="false"
|
|
android:orientation="horizontal">
|
|
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="1">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@{oldSubjectName}"
|
|
android:textIsSelectable="true"
|
|
android:textAppearance="@style/NavView.TextView.Medium"
|
|
android:textColor="?android:textColorTertiary"
|
|
android:visibility="@{oldSubjectName == null ? View.GONE : View.VISIBLE}"
|
|
app:strikeThrough="@{true}"
|
|
tools:text="pracownia urządzeń techniki komputerowej" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@{subjectName}"
|
|
android:textIsSelectable="true"
|
|
android:textAppearance="@style/NavView.TextView.TitleLarge"
|
|
android:visibility="@{subjectName == null ? View.GONE : View.VISIBLE}"
|
|
tools:text="pracownia urządzeń techniki komputerowej" />
|
|
|
|
<TextView
|
|
android:id="@+id/lessonDate"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textIsSelectable="true"
|
|
android:textAppearance="@style/NavView.TextView.Subtitle"
|
|
tools:text="czwartek, 14 listopada 2019"
|
|
tools:visibility="visible" />
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/annotation"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="@{annotationVisible ? View.VISIBLE : View.GONE}"
|
|
app:chipBackgroundColor="?colorError"
|
|
android:textColor="?colorOnError"
|
|
style="@style/Widget.Material3.Chip.Suggestion"
|
|
android:text="@string/timetable_lesson_cancelled"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:gravity="right">
|
|
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@{lesson.displayLessonNumber.toString()}"
|
|
android:textAppearance="?textAppearanceHeadlineLarge"
|
|
android:textColor="?colorOnSurface"
|
|
android:visibility="@{lesson.displayLessonNumber == null ? View.GONE : View.VISIBLE}"
|
|
tools:text="4" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@style/NavView.TextView.LabelLarge"
|
|
android:text="@{lesson.displayStartTime.stringHM + ` - ` + lesson.displayEndTime.stringHM}"
|
|
tools:text="14:55 - 15:40" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/shiftedLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="8dp"
|
|
android:layout_marginTop="8dp"
|
|
android:baselineAligned="false"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:visibility="gone">
|
|
|
|
<TextView
|
|
android:id="@+id/shiftedText"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:textSize="16sp"
|
|
android:textStyle="italic"
|
|
tools:text="Lekcja przeniesiona na czwartek, 17 października" />
|
|
|
|
<Button
|
|
android:id="@+id/shiftedGoTo"
|
|
style="@style/Widget.Material3.Button.OutlinedButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/dialog_lesson_go_to_button" />
|
|
|
|
</LinearLayout>
|
|
|
|
<com.mikepenz.iconics.view.IconicsTextView
|
|
android:id="@+id/legend"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="8dp"
|
|
android:textAppearance="@style/NavView.TextView.Helper"
|
|
tools:text="[ - ] dodano notatki" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="8dp"
|
|
android:layout_marginTop="8dp"
|
|
android:baselineAligned="false"
|
|
android:orientation="horizontal">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_marginEnd="8dp"
|
|
android:layout_marginRight="8dp"
|
|
android:orientation="vertical"
|
|
android:visibility="@{teacherName != null || oldTeacherName != null ? View.VISIBLE : View.GONE}">
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@style/NavView.TextView.BodyMedium"
|
|
android:textStyle="bold"
|
|
android:textColor="?colorPrimary"
|
|
android:text="@string/dialog_lesson_details_teacher" />
|
|
<TextView
|
|
android:id="@+id/oldTeacherNameView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@style/NavView.TextView.Helper"
|
|
android:text="@{oldTeacherName}"
|
|
android:textIsSelectable="true"
|
|
android:singleLine="true"
|
|
android:visibility="@{oldTeacherName != null ? View.VISIBLE : View.GONE}"
|
|
app:strikeThrough="@{true}"
|
|
tools:text="Janósz Kowalski" />
|
|
<TextView
|
|
android:id="@+id/teacherNameView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@{teacherName}"
|
|
android:textIsSelectable="true"
|
|
android:textAppearance="@style/NavView.TextView.BodyMedium"
|
|
android:visibility="@{teacherName != null ? View.VISIBLE : View.GONE}"
|
|
tools:text="Janósz Kowalski" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical"
|
|
android:visibility="@{teamName != null || oldTeamName != null ? View.VISIBLE : View.GONE}">
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@style/NavView.TextView.BodyMedium"
|
|
android:textStyle="bold"
|
|
android:textColor="?colorPrimary"
|
|
android:text="@string/dialog_lesson_details_team" />
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@style/NavView.TextView.Helper"
|
|
android:text="@{oldTeamName}"
|
|
android:textIsSelectable="true"
|
|
android:visibility="@{oldTeamName != null ? View.VISIBLE : View.GONE}"
|
|
app:strikeThrough="@{true}"
|
|
tools:text="013 informatyczna" />
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@{teamName}"
|
|
android:textIsSelectable="true"
|
|
android:visibility="@{teamName != null ? View.VISIBLE : View.GONE}"
|
|
tools:text="013 informatyczna" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="8dp"
|
|
android:baselineAligned="false"
|
|
android:orientation="horizontal">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical"
|
|
android:visibility="@{classroom != null || oldClassroom != null ? View.VISIBLE : View.GONE}">
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:textAppearance="@style/NavView.TextView.BodyMedium"
|
|
android:textStyle="bold"
|
|
android:textColor="?colorPrimary"
|
|
android:text="@string/dialog_lesson_details_classroom" />
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@style/NavView.TextView.Helper"
|
|
android:text="@{oldClassroom}"
|
|
android:textIsSelectable="true"
|
|
android:visibility="@{oldClassroom != null ? View.VISIBLE : View.GONE}"
|
|
app:strikeThrough="@{true}"
|
|
tools:text="013 informatyczna" />
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@{classroom}"
|
|
android:textIsSelectable="true"
|
|
android:visibility="@{classroom != null ? View.VISIBLE : View.GONE}"
|
|
tools:text="013 informatyczna" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/lessonId"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical"
|
|
android:visibility="gone"
|
|
tools:visibility="visible">
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:textAppearance="@style/NavView.TextView.BodyMedium"
|
|
android:textStyle="bold"
|
|
android:textColor="?colorPrimary"
|
|
android:text="@string/dialog_lesson_details_id" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="0dp"
|
|
android:text="@{Long.toString(lesson.id)}"
|
|
android:textIsSelectable="true"
|
|
tools:text="12345" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:id="@+id/attendanceDivider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginTop="8dp"
|
|
android:background="@drawable/divider"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/attendanceLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="8dp"
|
|
android:layout_marginTop="8dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<pl.szczodrzynski.edziennik.ui.attendance.AttendanceView
|
|
android:id="@+id/attendanceView"
|
|
android:layout_width="36dp"
|
|
android:layout_height="36dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:layout_marginRight="8dp"
|
|
tools:background="@drawable/bg_rounded_8dp"
|
|
tools:backgroundTint="#f44336"
|
|
tools:gravity="center"
|
|
tools:text="nb"
|
|
tools:textSize="22sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/attendanceType"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:maxLines="2"
|
|
android:ellipsize="end"
|
|
android:textSize="16sp"
|
|
tools:text="nieobecność usprawiedliweniowsza1234324" />
|
|
|
|
<ImageView
|
|
android:id="@+id/attendanceIcon"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_marginHorizontal="8dp"
|
|
tools:srcCompat="@sample/check" />
|
|
|
|
<Button
|
|
android:id="@+id/attendanceDetails"
|
|
style="@style/Widget.Material3.Button.TonalButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/dialog_lesson_attendance_details" />
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginTop="8dp"
|
|
android:background="@drawable/divider"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/eventsNoData"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="8dp"
|
|
android:orientation="vertical"
|
|
android:paddingTop="16dp"
|
|
android:paddingBottom="8dp"
|
|
android:visibility="gone"
|
|
tools:visibility="visible">
|
|
|
|
<ImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_marginBottom="8dp"
|
|
app:srcCompat="@drawable/ic_timetable" />
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@style/NavView.TextView.BodyLarge"
|
|
android:text="@string/dialog_lesson_no_events" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@style/NavView.TextView.BodyMedium"
|
|
android:text="@string/dialog_no_events_hint" />
|
|
|
|
</LinearLayout>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/eventsView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clipToPadding="false"
|
|
tools:visibility="visible"
|
|
tools:listitem="@layout/event_list_item" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="8dp"
|
|
android:layout_marginTop="8dp"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="horizontal">
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/addEventButton"
|
|
style="@style/Widget.Material3.Button.OutlinedButton.Icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_margin="8dp"
|
|
android:text="@string/add"
|
|
app:icon="@drawable/ic_action_add"/>
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/notesButton"
|
|
style="@style/Widget.Material3.Button.OutlinedButton.Icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_margin="8dp"
|
|
android:text="@string/notes_button"
|
|
app:icon="@drawable/ic_note_legacy"
|
|
android:visibility="gone"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</androidx.core.widget.NestedScrollView>
|
|
</layout>
|