54 lines
2.2 KiB
XML
54 lines
2.2 KiB
XML
<androidx.constraintlayout.widget.ConstraintLayout 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"
|
|
android:background="?selectableItemBackground"
|
|
android:paddingStart="8dp"
|
|
android:paddingTop="6dp"
|
|
android:paddingEnd="12dp"
|
|
android:paddingBottom="6dp"
|
|
tools:context=".ui.modules.timetable.additional.AdditionalLessonsAdapter">
|
|
|
|
<TextView
|
|
android:id="@+id/additionalLessonItemSubject"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:ellipsize="end"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="15sp"
|
|
app:layout_constraintEnd_toStartOf="@+id/additionalLessonItemDelete"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:maxLines="2"
|
|
tools:text="@tools:sample/lorem/random" />
|
|
|
|
<TextView
|
|
android:id="@+id/additionalLessonItemTime"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_marginTop="4dp"
|
|
android:maxLines="1"
|
|
android:textColor="?android:textColorSecondary"
|
|
android:textSize="13sp"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/additionalLessonItemSubject"
|
|
tools:text="11:11 - 12:12" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/additionalLessonItemDelete"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="?selectableItemBackgroundBorderless"
|
|
android:padding="5dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:srcCompat="@drawable/ic_menu_message_delete"
|
|
app:tint="?colorPrimary"
|
|
tools:ignore="ContentDescription" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|