2021-07-30 18:49:19 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/dashboard_grades_subitem_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
2021-08-10 11:55:51 +02:00
|
|
|
android:includeFontPadding="false"
|
2021-07-30 18:49:19 +02:00
|
|
|
android:maxLines="1"
|
|
|
|
android:textSize="13sp"
|
2021-08-10 11:55:51 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="@id/dashboard_grades_subitem_grade_container"
|
2021-07-30 18:49:19 +02:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2021-08-10 11:55:51 +02:00
|
|
|
app:layout_constraintTop_toTopOf="@id/dashboard_grades_subitem_grade_container"
|
2021-07-30 18:49:19 +02:00
|
|
|
tools:text="Urządzenia techniki kompu..." />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/dashboard_grades_subitem_grade_container"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginBottom="6dp"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@id/dashboard_grades_subitem_title"
|
2021-08-10 11:55:51 +02:00
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
<include
|
|
|
|
layout="@layout/subitem_dashboard_small_grade"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
</LinearLayout>
|
2021-07-30 18:49:19 +02:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|