📄 src/Resources/layout/row_note.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:orientation="vertical"
  android:padding="16dp"
  android:background="?android:attr/selectableItemBackground"
  android:clickable="true"
  android:focusable="true"
>
  <TextView
    android:id="@+id/note_name"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textStyle="bold"
    android:fontFamily="sans-serif"
  />
  <TextView
    android:id="@+id/note_preview"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fontFamily="sans-serif"
    android:maxLines="3"
    android:ellipsize="end"
    android:paddingTop="4dp"
  />
</LinearLayout>