2020-03-06 21:09:05 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
~ Copyright (c) Kuba Szczodrzyński 2020-2-29.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:background="?selectableItemBackground">
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="@drawable/divider"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2020-03-09 20:18:11 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
2020-03-06 21:09:05 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/subjectName"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:ellipsize="end"
|
2020-03-07 11:54:47 +01:00
|
|
|
android:fontFamily="sans-serif"
|
2020-03-06 21:09:05 +01:00
|
|
|
android:maxLines="2"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="20sp"
|
2020-03-09 20:18:11 +01:00
|
|
|
tools:text="systemy operacyjne" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/unread"
|
|
|
|
android:layout_width="12dp"
|
|
|
|
android:layout_height="12dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:background="@drawable/unread_red_circle"
|
|
|
|
tools:visibility="visible"/>
|
2020-03-06 21:09:05 +01:00
|
|
|
|
|
|
|
<com.mikepenz.iconics.view.IconicsImageView
|
|
|
|
android:id="@+id/dropdownIcon"
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="36dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:scaleType="centerInside"
|
|
|
|
app:iiv_color="?android:textColorSecondary"
|
|
|
|
app:iiv_icon="cmd-chevron-down"
|
|
|
|
app:iiv_size="18dp"
|
|
|
|
tools:src="@android:drawable/ic_menu_more" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="8dp"
|
2020-04-05 22:04:23 +02:00
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_marginBottom="8dp">
|
2020-03-06 21:09:05 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/previewContainer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-05 22:04:23 +02:00
|
|
|
android:baselineAligned="false"
|
2020-03-06 21:09:05 +01:00
|
|
|
android:orientation="horizontal"
|
2020-04-05 22:04:23 +02:00
|
|
|
tools:visibility="visible">
|
2020-03-06 21:09:05 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/gradesContainer"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="8dp"
|
2020-04-05 22:04:23 +02:00
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:layout_weight="1"
|
2020-03-06 21:09:05 +01:00
|
|
|
android:orientation="horizontal" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2020-04-05 22:04:23 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/yearContainer"
|
2020-03-06 21:09:05 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-05 22:04:23 +02:00
|
|
|
android:baselineAligned="false"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
tools:visibility="visible">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/yearSummary"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:text="Cały rok: 6 ocen • punkty: 34.20/40 (87.5%)"
|
|
|
|
tools:text1="Cały rok: 3 oceny • suma: 320 pkt"
|
|
|
|
tools:text2="Cały rok: 15 ocen • średnia: 2,62"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2020-03-06 21:09:05 +01:00
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</layout>
|