2019-02-13 19:21:27 +01:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-05-01 17:38:19 +02:00
|
|
|
android:background="?selectableItemBackground"
|
2019-10-03 21:13:01 +02:00
|
|
|
android:paddingStart="8dp"
|
|
|
|
android:paddingTop="6dp"
|
2019-02-13 19:21:27 +01:00
|
|
|
android:paddingEnd="12dp"
|
2019-10-03 21:13:01 +02:00
|
|
|
android:paddingBottom="6dp"
|
2020-05-01 17:38:19 +02:00
|
|
|
tools:context=".ui.modules.timetable.completed.CompletedLessonsAdapter">
|
2019-02-13 19:21:27 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/completedLessonItemNumber"
|
2020-10-10 02:53:25 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:minWidth="40dp"
|
|
|
|
android:minHeight="40dp"
|
2019-02-13 19:21:27 +01:00
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:gravity="center"
|
2019-08-26 20:54:20 +02:00
|
|
|
android:includeFontPadding="false"
|
2019-02-13 19:21:27 +01:00
|
|
|
android:maxLength="2"
|
|
|
|
android:textSize="32sp"
|
|
|
|
tools:ignore="all"
|
|
|
|
tools:text="1" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/completedLessonItemSubject"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
2019-10-03 21:13:01 +02:00
|
|
|
android:layout_marginStart="8dp"
|
2019-02-13 19:21:27 +01:00
|
|
|
android:layout_marginEnd="40dp"
|
2019-08-26 20:54:20 +02:00
|
|
|
android:layout_toStartOf="@id/completedLessonItemAlert"
|
2019-02-13 19:21:27 +01:00
|
|
|
android:layout_toEndOf="@+id/completedLessonItemNumber"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textSize="17sp"
|
|
|
|
tools:text="@tools:sample/lorem" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/completedLessonItemTopic"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-10-10 02:53:25 +02:00
|
|
|
android:layout_below="@+id/completedLessonItemSubject"
|
2019-02-13 19:21:27 +01:00
|
|
|
android:layout_alignStart="@id/completedLessonItemSubject"
|
|
|
|
android:layout_alignEnd="@+id/completedLessonItemAlert"
|
|
|
|
android:layout_marginEnd="40dp"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
2019-08-23 18:37:05 +00:00
|
|
|
android:textColor="?android:textColorSecondary"
|
2019-02-13 19:21:27 +01:00
|
|
|
android:textSize="12sp"
|
|
|
|
tools:text="@tools:sample/lorem" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/completedLessonItemAlert"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentEnd="true"
|
2019-10-03 21:13:01 +02:00
|
|
|
android:layout_centerVertical="true"
|
2019-08-26 20:54:20 +02:00
|
|
|
app:srcCompat="@drawable/ic_timetable_swap"
|
2020-10-10 02:53:25 +02:00
|
|
|
app:tint="?colorTimetableChange"
|
2019-02-13 19:21:27 +01:00
|
|
|
tools:ignore="contentDescription" />
|
|
|
|
</RelativeLayout>
|