reader_popup.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical" android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/reader_menu_background"
  6. android:paddingRight="10dp"
  7. android:paddingLeft="5dp"
  8. android:paddingTop="5dp"
  9. android:paddingBottom="5dp">
  10. <CheckBox
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:id="@+id/enable_transitions"
  14. style="@style/grey_text"
  15. android:text="@string/pref_enable_transitions"/>
  16. <CheckBox
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:id="@+id/show_page_number"
  20. style="@style/grey_text"
  21. android:text="@string/pref_show_page_number"/>
  22. <CheckBox
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:id="@+id/hide_status_bar"
  26. style="@style/grey_text"
  27. android:text="@string/pref_hide_status_bar"/>
  28. <CheckBox
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:id="@+id/keep_screen_on"
  32. style="@style/grey_text"
  33. android:text="Keep screen on"/>
  34. </LinearLayout>