2018-11-11 10:45:58 -06:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-02-14 15:23:52 -06:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-11-11 10:45:58 -06:00
|
|
|
android:id="@+id/note_subitem_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-08-26 13:54:20 -05:00
|
|
|
android:background="?selectableItemBackground"
|
2019-02-14 15:23:52 -06:00
|
|
|
tools:context=".ui.modules.note.NoteItem">
|
2018-11-11 10:45:58 -06:00
|
|
|
|
|
|
|
<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"
|
2019-08-26 13:54:20 -05:00
|
|
|
android:textSize="15sp"
|
|
|
|
tools:text="@tools:sample/date/ddmmyy" />
|
2018-11-11 10:45:58 -06:00
|
|
|
|
|
|
|
<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"
|
2019-08-26 13:54:20 -05:00
|
|
|
android:textSize="13sp"
|
|
|
|
tools:text="@tools:sample/full_names" />
|
2018-11-11 10:45:58 -06:00
|
|
|
|
|
|
|
<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"
|
2019-08-26 13:54:20 -05:00
|
|
|
android:textSize="13sp"
|
|
|
|
tools:text="@tools:sample/lorem" />
|
2018-11-11 10:45:58 -06:00
|
|
|
|
|
|
|
<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"
|
2019-08-26 13:54:20 -05:00
|
|
|
android:textSize="14sp"
|
|
|
|
tools:text="@tools:sample/lorem/random" />
|
2018-11-11 10:45:58 -06:00
|
|
|
</RelativeLayout>
|