mirror of
https://github.com/szkolny-eu/szkolny-android.git
synced 2025-04-02 06:44:27 +02:00

* [Messages] Create message type checking methods. * [UI] Refactor messages searching to a separate module. * [Refactor] Move dialogs.event to modules package. * [Refactor] Move classes from modules.messages to separate packages. * [Homework] Implement searching homework lists. * [Homework] Fix highlighting search query in addedBy text. * [Homework] Workaround IconicsTextView discarding span data. * [Messages] Make attachments searchable. * [Events] Show icons for events with attachments. * [Homework] Workaround IconicsTextView discarding span data, again. * [Search] Fix serialization crashes with searchable models. * [Messages] Fix searching in HTML body.
27 lines
986 B
XML
27 lines
986 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Copyright (c) Kuba Szczodrzyński 2020-4-5.
|
|
-->
|
|
|
|
<layout 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">
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/searchLayout"
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
android:hint="@string/messages_search"
|
|
app:hintEnabled="true"
|
|
tools:helperText="Znaleziono 400 wiadomości">
|
|
|
|
<pl.szczodrzynski.edziennik.utils.TextInputKeyboardEdit
|
|
android:id="@+id/searchEdit"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
</layout>
|
|
|