2018-11-14 02:18:00 -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-14 02:18:00 -06:00
|
|
|
android:id="@+id/homework_subitem_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-02-14 15:23:52 -06:00
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
tools:context=".ui.modules.homework.HomeworkItem">
|
2018-11-14 02:18:00 -06:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/homeworkItemSubject"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="15dp"
|
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_marginBottom="5dp"
|
|
|
|
android:text="@string/all_date"
|
|
|
|
android:textSize="17sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/homeworkItemTeacher"
|
|
|
|
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/homeworkItemSubject"
|
|
|
|
android:layout_toRightOf="@id/homeworkItemSubject"
|
|
|
|
android:gravity="end"
|
|
|
|
android:text="@string/all_teacher"
|
|
|
|
android:textSize="13sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/homeworkItemContent"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/homeworkItemSubject"
|
|
|
|
android:layout_alignStart="@id/homeworkItemSubject"
|
|
|
|
android:layout_alignLeft="@id/homeworkItemSubject"
|
|
|
|
android:layout_marginEnd="15dp"
|
|
|
|
android:layout_marginRight="15dp"
|
|
|
|
android:layout_marginBottom="15dp"
|
|
|
|
android:lineSpacingMultiplier="1.2"
|
|
|
|
android:text="@string/all_content"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
</RelativeLayout>
|