mirror of
https://github.com/szkolny-eu/szkolny-android.git
synced 2025-03-29 04:01:59 +01:00

* Remove Themes and getColorFromAttr() usage * Reformat all layout XML files * Remove <layout> from non-data binding XMLs * Cleanup unused NavLib code * Migrate NavBottomSheet to view binding, remove unused components * Add IIcon.toDrawable() extension * Make BottomSheet scrim opacity linear * Support touch events on BottomSheet scrim
19 lines
661 B
XML
19 lines
661 B
XML
<?xml version="1.0" encoding="utf-8"?><!--
|
|
~ Copyright (c) Kuba Szczodrzyński 2021-4-11.
|
|
-->
|
|
|
|
<com.github.tibolte.agendacalendarview.agenda.AgendaEventView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<include
|
|
android:id="@+id/item"
|
|
layout="@layout/agenda_counter_item"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1" />
|
|
</com.github.tibolte.agendacalendarview.agenda.AgendaEventView>
|