wulkanowy-mod/app/src/main/res/layout/item_grade_summary.xml

34 lines
1.3 KiB
XML
Raw Normal View History

2018-06-04 14:47:46 -05:00
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
2018-10-03 14:28:23 -05:00
android:layout_height="wrap_content"
android:background="@drawable/ic_all_divider"
android:minHeight="35dp">
2018-06-04 14:47:46 -05:00
2018-10-03 14:28:23 -05:00
<TextView
android:id="@+id/gradeSummaryItemTitle"
android:layout_width="wrap_content"
2018-06-04 14:47:46 -05:00
android:layout_height="wrap_content"
2018-10-03 14:28:23 -05:00
android:layout_centerVertical="true"
android:layout_marginLeft="20dp"
android:layout_marginStart="20dp"
android:text="@string/grade_summary_predicted_grade"
android:textSize="14sp" />
2018-06-04 14:47:46 -05:00
2018-10-03 14:28:23 -05:00
<TextView
android:id="@+id/gradeSummaryItemGrade"
android:layout_width="wrap_content"
2018-06-04 14:47:46 -05:00
android:layout_height="wrap_content"
2018-10-03 14:28:23 -05:00
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginEnd="25dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="25dp"
android:layout_marginStart="10dp"
android:layout_toEndOf="@id/gradeSummaryItemTitle"
android:layout_toRightOf="@id/gradeSummaryItemTitle"
android:gravity="end"
android:text="@string/app_name"
android:textSize="12sp" />
2018-06-04 14:47:46 -05:00
</RelativeLayout>