activity_confirm_write_memcard.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <include layout="@layout/navigationbar" />
  6. <ScrollView
  7. android:background="#fff"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:layout_marginLeft="14dp"
  11. android:layout_marginTop="14dp"
  12. android:layout_marginRight="14dp"
  13. android:layout_marginBottom="14dp"
  14. android:layout_above="@+id/footerLayout"
  15. android:layout_below="@+id/navigation_bar">
  16. <LinearLayout
  17. android:gravity="left"
  18. android:orientation="vertical"
  19. android:id="@+id/linearLayout2"
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content">
  22. <TextView
  23. android:id="@+id/cationText1"
  24. android:layout_width="match_parent"
  25. android:layout_height="wrap_content"
  26. android:layout_marginTop="5sp"
  27. android:text="@string/memcard_memory_remove_cation"
  28. android:ems="10" />
  29. <TextView
  30. android:id="@+id/textFileNumber"
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:layout_marginTop="20dp"
  34. android:text="@string/memcard_file_num_format" />
  35. <TextView
  36. android:id="@+id/textFileSize"
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:text="@string/memcard_total_file_size_format" />
  40. <TextView
  41. android:id="@+id/textWritePrt"
  42. android:layout_width="wrap_content"
  43. android:layout_height="wrap_content"
  44. android:layout_marginTop="20sp"
  45. android:text="@string/memcard_printer_save_to_format" />
  46. <TextView
  47. android:id="@+id/textWriteFolder"
  48. android:layout_width="wrap_content"
  49. android:layout_height="wrap_content"
  50. android:layout_marginBottom="10sp"
  51. android:text="@string/memcard_folder_save_to_format" />
  52. </LinearLayout>
  53. </ScrollView>
  54. <LinearLayout
  55. android:id="@+id/footerLayout"
  56. style="@style/FunctionBar">
  57. <Button
  58. android:id="@+id/add_button"
  59. android:text="@string/memcard_add_image"
  60. android:onClick="add_button_clicked"
  61. style="@style/FunctionButton.Normal" />
  62. <TextView
  63. android:layout_width="0dp"
  64. android:layout_height="wrap_content"
  65. android:layout_weight="1" />
  66. <Button
  67. android:id="@+id/copy_button"
  68. android:text="@string/str_copy"
  69. android:onClick="copy_button_clicked"
  70. style="@style/FunctionButton.Execute" />
  71. </LinearLayout>
  72. </RelativeLayout>