mirror of
https://github.com/szkolny-eu/szkolny-android.git
synced 2025-04-01 22:34:28 +02:00
64 lines
2.4 KiB
XML
64 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<com.github.tibolte.agendacalendarview.agenda.AgendaHeaderView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/view_agenda_day_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:textSize="18sp"
|
|
android:visibility="visible" />
|
|
|
|
<FrameLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="5dp"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginTop="5dp">
|
|
|
|
<View
|
|
android:id="@+id/view_day_circle_selected"
|
|
android:layout_width="@dimen/circle_day_size"
|
|
android:layout_height="@dimen/circle_day_size"
|
|
android:background="@drawable/agenda_day_circle"
|
|
android:visibility="invisible"
|
|
tools:visibility="visible" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:paddingTop="5dp"
|
|
android:paddingBottom="5dp"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/view_agenda_day_of_month"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:textSize="20sp"
|
|
tools:text="24" />
|
|
|
|
<TextView
|
|
android:id="@+id/view_agenda_day_of_week"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_horizontal"
|
|
android:textSize="12sp"
|
|
android:visibility="visible"
|
|
tools:text="śr." />
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout>
|
|
</FrameLayout>
|
|
|
|
</com.github.tibolte.agendacalendarview.agenda.AgendaHeaderView> |