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

32 lines
1.1 KiB
XML
Raw Normal View History

2018-10-14 15:16:58 -05:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-06-04 14:47:46 -05:00
android:layout_width="match_parent"
2018-10-03 14:28:23 -05:00
android:layout_height="wrap_content"
android:background="@drawable/ic_all_divider"
2018-10-14 15:16:58 -05:00
android:minHeight="35dp"
android:orientation="horizontal">
2018-06-04 14:47:46 -05:00
2018-10-03 14:28:23 -05:00
<TextView
android:id="@+id/gradeSummaryItemTitle"
2018-10-14 15:16:58 -05:00
android:layout_width="0dp"
2018-06-04 14:47:46 -05:00
android:layout_height="wrap_content"
2018-10-14 15:16:58 -05:00
android:layout_gravity="center_vertical"
2018-10-03 14:28:23 -05:00
android:layout_marginStart="20dp"
2018-10-14 15:16:58 -05:00
android:layout_marginLeft="20dp"
android:layout_weight="1"
2018-10-03 14:28:23 -05:00
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-14 15:16:58 -05:00
android:layout_gravity="center_vertical"
android:layout_marginStart="10dp"
2018-10-03 14:28:23 -05:00
android:layout_marginLeft="10dp"
2018-10-14 15:16:58 -05:00
android:layout_marginEnd="25dp"
2018-10-03 14:28:23 -05:00
android:layout_marginRight="25dp"
android:gravity="end"
android:text="@string/app_name"
android:textSize="12sp" />
2018-10-14 15:16:58 -05:00
</LinearLayout>