2018-11-14 09:18:00 +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"
|
2020-04-03 17:39:36 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-11-14 09:18:00 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="300dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="20dp">
|
|
|
|
|
|
|
|
<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" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/all_subject"
|
|
|
|
android:textSize="17sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/homeworkDialogSubject"
|
|
|
|
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:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:text="@string/all_teacher"
|
|
|
|
android:textSize="17sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/homeworkDialogTeacher"
|
|
|
|
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:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:text="@string/all_date"
|
|
|
|
android:textSize="17sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/homeworkDialogDate"
|
|
|
|
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:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:text="@string/all_entry_date"
|
|
|
|
android:textSize="17sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/homeworkDialogEntryDate"
|
|
|
|
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:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:text="@string/all_content"
|
|
|
|
android:textSize="17sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/homeworkDialogContent"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:lineSpacingMultiplier="1.2"
|
|
|
|
android:text="@string/all_no_data"
|
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
2020-04-03 17:39:36 +02:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:text="@string/homework_attachments"
|
|
|
|
android:textSize="17sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/homeworkDialogAttachments"
|
2018-11-14 09:18:00 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-03 17:39:36 +02:00
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:lineSpacingMultiplier="1.2"
|
|
|
|
android:text="@string/all_no_data"
|
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="15dp">
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/homeworkDialogRead"
|
|
|
|
style="@style/Widget.MaterialComponents.Button.TextButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/homework_mark_as_done"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/homeworkDialogClose"
|
|
|
|
style="@style/Widget.MaterialComponents.Button.TextButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="1dp"
|
|
|
|
android:text="@string/all_close"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2018-11-14 09:18:00 +01:00
|
|
|
</LinearLayout>
|
2019-08-26 20:54:20 +02:00
|
|
|
</androidx.core.widget.NestedScrollView>
|