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"
|
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" />
|
|
|
|
|
2019-08-26 20:54:20 +02:00
|
|
|
<com.google.android.material.button.MaterialButton
|
2018-11-14 09:18:00 +01:00
|
|
|
android:id="@+id/homeworkDialogClose"
|
2019-08-26 20:54:20 +02:00
|
|
|
style="@style/Widget.MaterialComponents.Button.TextButton"
|
2018-11-14 09:18:00 +01: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" />
|
2018-11-14 09:18:00 +01:00
|
|
|
</LinearLayout>
|
2019-08-26 20:54:20 +02:00
|
|
|
</androidx.core.widget.NestedScrollView>
|