failed_upload_files.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. ownCloud Android client application
  4. Copyright (C) 2012 Bartek Przybylski
  5. Copyright (C) 2012-2013 ownCloud Inc.
  6. This program is free software: you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License version 2,
  8. as published by the Free Software Foundation.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. -->
  16. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  17. android:layout_width="fill_parent"
  18. android:layout_height="fill_parent"
  19. android:background="@color/owncloud_white"
  20. android:orientation="vertical"
  21. android:id="@+id/failed_files_list_view">
  22. <LinearLayout
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:layout_gravity="right"
  26. android:orientation="horizontal" >
  27. </LinearLayout>
  28. <LinearLayout
  29. android:layout_width="match_parent"
  30. android:layout_height="wrap_content"
  31. android:orientation="vertical" >
  32. <LinearLayout
  33. android:layout_width="match_parent"
  34. android:layout_height="wrap_content" >
  35. <TextView
  36. android:id="@+id/failed_upload_headline_textview"
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:layout_weight="0.93"
  40. android:hint="@string/failed_upload_headline_hint"
  41. android:text="@string/failed_upload_headline_text" />
  42. </LinearLayout>
  43. <LinearLayout
  44. android:layout_width="match_parent"
  45. android:layout_height="wrap_content"
  46. android:layout_gravity="bottom|right" >
  47. <CheckBox
  48. android:id="@+id/failed_upload_headline_cb"
  49. android:layout_width="wrap_content"
  50. android:layout_height="wrap_content"
  51. android:text="@string/failed_upload_all_cb"
  52. android:textSize="8sp" />
  53. <Button
  54. android:id="@+id/failed_upload_retry_all_btn"
  55. android:layout_width="wrap_content"
  56. android:layout_height="wrap_content"
  57. android:minHeight="30dp"
  58. android:minWidth="90dp"
  59. android:text="@string/failed_upload_headline_retryall_btn"
  60. android:textSize="8sp" />
  61. <Button
  62. android:id="@+id/failed_upload_delete_all_btn"
  63. android:layout_width="wrap_content"
  64. android:layout_height="wrap_content"
  65. android:minHeight="30dp"
  66. android:minWidth="90dp"
  67. android:text="@string/failed_upload_headline_delete_all_btn"
  68. android:textSize="8sp" />
  69. </LinearLayout>
  70. </LinearLayout>
  71. <ScrollView
  72. android:id="@+id/failedUploadScrollView"
  73. android:layout_width="match_parent"
  74. android:layout_height="match_parent"
  75. android:overScrollMode="ifContentScrolls" >
  76. <LinearLayout
  77. android:id="@+id/failed_upload_scrollviewlayout"
  78. android:layout_width="match_parent"
  79. android:layout_height="wrap_content"
  80. android:orientation="vertical">
  81. </LinearLayout>
  82. </ScrollView>
  83. </LinearLayout>