mirror of
https://github.com/wulkanowy/wulkanowy.git
synced 2024-11-14 01:50:27 -06:00
146 lines
5.7 KiB
XML
146 lines
5.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".ui.modules.timetable.completed.CompletedLessonDialog">
|
|
|
|
<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:textColor="?android:textColorPrimary"
|
|
android:textSize="20sp" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/timetable_lesson"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="17sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/completedLessonDialogSubject"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="3dp"
|
|
android:text="@string/all_no_data"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textIsSelectable="true"
|
|
android:textSize="12sp" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:text="@string/completed_lessons_topic"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="17sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/completedLessonDialogTopic"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="3dp"
|
|
android:text="@string/all_no_data"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textIsSelectable="true"
|
|
android:textSize="12sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/completedLessonDialogTeacherTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:text="@string/all_teacher"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="17sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/completedLessonDialogTeacher"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="3dp"
|
|
android:text="@string/all_no_data"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textIsSelectable="true"
|
|
android:textSize="12sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/completedLessonDialogChangesTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:text="@string/timetable_changes"
|
|
android:textColor="?colorPrimary"
|
|
android:textSize="17sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/completedLessonDialogChanges"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="3dp"
|
|
android:text="@string/all_no_data"
|
|
android:textColor="?colorPrimary"
|
|
android:textIsSelectable="true"
|
|
android:textSize="12sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/completedLessonDialogAbsenceTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:text="@string/completed_lessons_absence"
|
|
android:textColor="?colorPrimary"
|
|
android:textSize="17sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/completedLessonDialogAbsence"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="3dp"
|
|
android:text="@string/all_no_data"
|
|
android:textColor="?colorPrimary"
|
|
android:textIsSelectable="true"
|
|
android:textSize="12sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/completedLessonDialogResourcesTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:text="@string/completed_lessons_resources"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="17sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/completedLessonDialogResources"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="3dp"
|
|
android:autoLink="web"
|
|
android:text="@string/all_no_data"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textIsSelectable="true"
|
|
android:textSize="12sp" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/completedLessonDialogClose"
|
|
style="@style/Widget.MaterialComponents.Button.TextButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end"
|
|
android:layout_marginTop="15dp"
|
|
android:text="@string/all_close" />
|
|
|
|
</LinearLayout>
|
|
</androidx.core.widget.NestedScrollView>
|