forked from github/wulkanowy-mirror
85 lines
3.3 KiB
XML
85 lines
3.3 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:id="@+id/note_subitem_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?selectableItemBackground"
|
|
tools:context=".ui.modules.note.NoteAdapter">
|
|
|
|
<TextView
|
|
android:id="@+id/noteItemDate"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="15dp"
|
|
android:layout_marginTop="10dp"
|
|
android:textColor="?android:textColorSecondary"
|
|
android:textSize="15sp"
|
|
app:layout_constraintRight_toLeftOf="@+id/noteItemTeacher"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:text="@tools:sample/date/ddmmyy" />
|
|
|
|
<TextView
|
|
android:id="@+id/noteItemTeacher"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="10dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginEnd="15dp"
|
|
android:ellipsize="end"
|
|
android:gravity="end"
|
|
android:singleLine="true"
|
|
android:textSize="13sp"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toEndOf="@+id/noteItemDate"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:text="@tools:sample/full_names" />
|
|
|
|
<TextView
|
|
android:id="@+id/noteItemType"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginEnd="10dp"
|
|
android:layout_marginBottom="5dp"
|
|
android:ellipsize="end"
|
|
android:maxLines="2"
|
|
android:textSize="16sp"
|
|
app:layout_constraintLeft_toLeftOf="@id/noteItemDate"
|
|
app:layout_constraintRight_toLeftOf="@id/noteItemPoints"
|
|
app:layout_constraintTop_toBottomOf="@id/noteItemDate"
|
|
app:layout_goneMarginEnd="0dp"
|
|
tools:text="@tools:sample/lorem" />
|
|
|
|
<TextView
|
|
android:id="@+id/noteItemPoints"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:textSize="16sp"
|
|
android:textStyle="bold"
|
|
android:visibility="gone"
|
|
app:layout_constraintRight_toRightOf="@id/noteItemTeacher"
|
|
app:layout_constraintTop_toBottomOf="@id/noteItemTeacher"
|
|
tools:text="-5"
|
|
tools:textColor="@color/note_positive"
|
|
tools:visibility="visible" />
|
|
|
|
<TextView
|
|
android:id="@+id/noteItemContent"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginBottom="15dp"
|
|
android:ellipsize="end"
|
|
android:lineSpacingMultiplier="1.2"
|
|
android:maxLines="2"
|
|
android:textSize="14sp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintLeft_toLeftOf="@id/noteItemDate"
|
|
app:layout_constraintRight_toRightOf="@+id/noteItemTeacher"
|
|
app:layout_constraintTop_toBottomOf="@id/noteItemType"
|
|
tools:text="@tools:sample/lorem/random" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|