mirror of
https://github.com/wulkanowy/wulkanowy.git
synced 2024-11-14 02:10:27 -06:00
62 lines
2.3 KiB
XML
62 lines
2.3 KiB
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
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.NoteItem">
|
|
|
|
<TextView
|
|
android:id="@+id/noteItemDate"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="15dp"
|
|
android:layout_marginLeft="15dp"
|
|
android:layout_marginTop="10dp"
|
|
android:textSize="15sp"
|
|
tools:text="@tools:sample/date/ddmmyy" />
|
|
|
|
<TextView
|
|
android:id="@+id/noteItemTeacher"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_marginStart="10dp"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginEnd="15dp"
|
|
android:layout_marginRight="15dp"
|
|
android:layout_toEndOf="@id/noteItemDate"
|
|
android:layout_toRightOf="@id/noteItemDate"
|
|
android:gravity="end"
|
|
android:textSize="13sp"
|
|
tools:text="@tools:sample/full_names" />
|
|
|
|
<TextView
|
|
android:id="@+id/noteItemType"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/noteItemDate"
|
|
android:layout_alignStart="@id/noteItemDate"
|
|
android:layout_alignLeft="@id/noteItemDate"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginBottom="5dp"
|
|
android:textSize="13sp"
|
|
tools:text="@tools:sample/lorem" />
|
|
|
|
<TextView
|
|
android:id="@+id/noteItemContent"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/noteItemType"
|
|
android:layout_alignStart="@id/noteItemDate"
|
|
android:layout_alignLeft="@id/noteItemDate"
|
|
android:layout_marginEnd="15dp"
|
|
android:layout_marginRight="15dp"
|
|
android:layout_marginBottom="15dp"
|
|
android:lineSpacingMultiplier="1.2"
|
|
android:textSize="14sp"
|
|
tools:text="@tools:sample/lorem/random" />
|
|
</RelativeLayout>
|