forked from github/szkolny

* [DB] Add Room schema export location. * [DB] Add Note entity and migration 96. * Add correct database schema * [Notes] Implement basic note list UI. * [DB] Implement Noteable in Full entities. Add note relation and filtering. * [Notes] Make Note searchable. * [UI] Disable onClick listeners in adapters when null. * [UI] Implement showing note list in dialog. * [UI] Update note dialogs UI. * [Notes] Add note details dialog. * [Notes] Extract note dialogs header into a separate layout. * [Notes] Add note editor dialog. * [Notes] Show note icons in dialogs and lists. * [Notes] Add showing substitute text. * [Notes] Add replacing notes icon. * [Notes] Add sharing and receiving notes. * [Notes] Add notes list UI fragment. * [Notes] Implement adding notes without owner. * [Notes] Add color names. * [Notes] Add notes card on home screen. * [Notes] Add notes card migration.
43 lines
1.3 KiB
XML
43 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Copyright (c) Kuba Szczodrzyński 2021-10-24.
|
|
-->
|
|
|
|
<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">
|
|
|
|
<data>
|
|
|
|
<variable
|
|
name="text"
|
|
type="java.lang.String" />
|
|
</data>
|
|
|
|
<merge
|
|
tools:layout_height="wrap_content"
|
|
tools:layout_width="match_parent"
|
|
tools:orientation="vertical"
|
|
tools:parentTag="LinearLayout">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="8dp"
|
|
android:layout_marginTop="16dp"
|
|
android:drawableLeftAutoSize="@{true}"
|
|
android:drawablePadding="8dp"
|
|
android:text="@{text}"
|
|
android:textAppearance="@style/AppTheme.MaterialAlertDialog.TitleText"
|
|
app:drawableStartCompat="@drawable/ic_note"
|
|
tools:layout_height="28sp"
|
|
tools:text="@string/notes_list_dialog_title" />
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginTop="4dp"
|
|
android:background="@drawable/divider" />
|
|
</merge>
|
|
</layout>
|