notes_page.xml 837 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:id="@+id/notesPage"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <android.support.v7.widget.RecyclerView
  8. android:id="@+id/notesRecyclerView"
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"
  11. android:clipToPadding="false"
  12. android:paddingTop="8dp"
  13. tools:listitem="@layout/note" />
  14. <TextView
  15. android:id="@+id/notesErrorPlaceholder"
  16. style="@style/PlaceholderStyle" />
  17. <TextView
  18. android:id="@+id/notesPlaceholder"
  19. style="@style/PlaceholderStyle"
  20. android:text="@string/notes.error.empty" />
  21. </FrameLayout>