notes_page.xml 873 B

1234567891011121314151617181920212223242526
  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:paddingBottom="8dp"
  13. android:paddingTop="8dp"
  14. tools:listitem="@layout/note" />
  15. <TextView
  16. android:id="@+id/notesErrorPlaceholder"
  17. style="@style/PlaceholderStyle" />
  18. <TextView
  19. android:id="@+id/notesPlaceholder"
  20. style="@style/PlaceholderStyle"
  21. android:text="@string/notes.error.empty" />
  22. </FrameLayout>