2017-12-11 19:45:28 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-08-26 20:54:20 +02:00
|
|
|
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-12-11 19:45:28 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
2018-10-14 22:16:58 +02:00
|
|
|
android:layout_width="300dp"
|
2017-12-11 19:45:28 +01:00
|
|
|
android:layout_height="wrap_content"
|
2018-10-06 10:53:34 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="20dp">
|
2017-12-11 19:45:28 +01:00
|
|
|
|
2018-10-14 22:16:58 +02:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:layout_marginBottom="20dp"
|
|
|
|
android:text="@string/all_details"
|
|
|
|
android:textSize="20sp" />
|
|
|
|
|
2018-10-06 10:53:34 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/timetableDialogChangesTitle"
|
|
|
|
android:layout_width="wrap_content"
|
2017-12-11 19:45:28 +01:00
|
|
|
android:layout_height="wrap_content"
|
2018-10-06 10:53:34 +02:00
|
|
|
android:text="@string/timetable_changes"
|
2019-08-26 20:54:20 +02:00
|
|
|
android:textColor="?colorPrimary"
|
2018-10-06 10:53:34 +02:00
|
|
|
android:textSize="17sp" />
|
2017-12-11 19:45:28 +01:00
|
|
|
|
2018-10-06 10:53:34 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/timetableDialogChanges"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:text="@string/all_no_data"
|
2019-08-26 20:54:20 +02:00
|
|
|
android:textColor="?colorPrimary"
|
2018-10-06 10:53:34 +02:00
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:text="@string/timetable_lesson"
|
|
|
|
android:textSize="17sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/timetableDialogSubject"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:text="@string/all_no_data"
|
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
2019-03-11 20:56:47 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/timetableDialogSubjectNew"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:text="@string/all_no_data"
|
2019-08-26 20:54:20 +02:00
|
|
|
android:textColor="?colorPrimary"
|
2019-03-11 20:56:47 +01:00
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2018-10-06 10:53:34 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/timetableDialogTeacherTitle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:text="@string/all_teacher"
|
|
|
|
android:textSize="17sp" />
|
2017-12-11 19:45:28 +01:00
|
|
|
|
2018-10-06 10:53:34 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/timetableDialogTeacher"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:text="@string/all_no_data"
|
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
2019-03-11 20:56:47 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/timetableDialogTeacherNew"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:text="@string/all_no_data"
|
2019-08-26 20:54:20 +02:00
|
|
|
android:textColor="?colorPrimary"
|
2019-03-11 20:56:47 +01:00
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2018-10-06 10:53:34 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/timetableDialogGroupTitle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:text="@string/timetable_group"
|
|
|
|
android:textSize="17sp" />
|
2017-12-11 19:45:28 +01:00
|
|
|
|
2018-10-06 10:53:34 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/timetableDialogGroup"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:text="@string/all_no_data"
|
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/timetableDialogRoomTitle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:text="@string/timetable_room"
|
|
|
|
android:textSize="17sp" />
|
2017-12-11 19:45:28 +01:00
|
|
|
|
2018-10-06 10:53:34 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/timetableDialogRoom"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:text="@string/all_no_data"
|
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:textSize="12sp" />
|
2017-12-11 19:45:28 +01:00
|
|
|
|
2019-03-11 20:56:47 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/timetableDialogRoomNew"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:text="@string/all_no_data"
|
2019-08-26 20:54:20 +02:00
|
|
|
android:textColor="?colorPrimary"
|
2019-03-11 20:56:47 +01:00
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2018-10-06 10:53:34 +02:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:text="@string/timetable_time"
|
|
|
|
android:textSize="17sp" />
|
2017-12-11 19:45:28 +01:00
|
|
|
|
2018-10-06 10:53:34 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/timetableDialogTime"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:text="@string/all_no_data"
|
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
2019-08-26 20:54:20 +02:00
|
|
|
<com.google.android.material.button.MaterialButton
|
2018-10-06 10:53:34 +02:00
|
|
|
android:id="@+id/timetableDialogClose"
|
2019-08-26 20:54:20 +02:00
|
|
|
style="@style/Widget.MaterialComponents.Button.TextButton"
|
2018-10-06 10:53:34 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="end"
|
|
|
|
android:layout_marginTop="15dp"
|
2019-08-26 20:54:20 +02:00
|
|
|
android:text="@string/all_close" />
|
2017-12-11 19:45:28 +01:00
|
|
|
</LinearLayout>
|
2019-08-26 20:54:20 +02:00
|
|
|
</androidx.core.widget.NestedScrollView>
|