2019-09-29 01:17:08 +02:00
|
|
|
<androidx.cardview.widget.CardView android:id="@+id/teacherAbsenceCard"
|
2019-09-18 22:29:09 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-09-29 22:06:51 +02:00
|
|
|
tools:cardBackgroundColor="#ff1744"
|
2019-09-18 22:29:09 +02:00
|
|
|
app:cardCornerRadius="5dp"
|
|
|
|
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="horizontal"
|
|
|
|
android:padding="10dp">
|
|
|
|
|
|
|
|
<TextView
|
2019-09-29 01:17:08 +02:00
|
|
|
android:id="@+id/teacherAbsenceText"
|
2019-09-18 22:29:09 +02:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:textAppearance="@style/NavView.TextView.Medium"
|
2019-09-29 01:17:08 +02:00
|
|
|
android:text="@string/agenda_teacher_absence" />
|
2019-09-18 22:29:09 +02:00
|
|
|
|
|
|
|
<TextView
|
2019-09-29 01:17:08 +02:00
|
|
|
android:id="@+id/teacherAbsenceCount"
|
2019-09-18 22:29:09 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center"
|
|
|
|
android:textSize="20sp"
|
|
|
|
tools:text="3" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2019-09-29 01:17:08 +02:00
|
|
|
</androidx.cardview.widget.CardView>
|