forked from github/wulkanowy-mirror
30 lines
1.3 KiB
XML
30 lines
1.3 KiB
XML
![]() |
<?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"
|
||
|
android:maxLines="1"
|
||
|
android:textSize="13sp"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
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"
|
||
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
tools:ignore="UselessLeaf" />
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|