accounts_layout.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Nextcloud Android client application
  4. Copyright (C) 2016 Andy Scherzinger
  5. Copyright (C) 2016 Nextcloud
  6. Copyright (C) 2016 ownCloud
  7. This program is free software; you can redistribute it and/or
  8. modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  9. License as published by the Free Software Foundation; either
  10. version 3 of the License, or any later version.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  15. You should have received a copy of the GNU Affero General Public
  16. License along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. -->
  18. <LinearLayout
  19. android:id="@+id/upload_files_layout"
  20. xmlns:android="http://schemas.android.com/apk/res/android"
  21. android:layout_width="fill_parent"
  22. android:layout_height="fill_parent"
  23. android:orientation="vertical">
  24. <include
  25. layout="@layout/toolbar_standard"/>
  26. <ListView
  27. android:id="@+id/account_list"
  28. android:layout_width="fill_parent"
  29. android:layout_height="fill_parent"
  30. android:divider="@color/list_divider_background"
  31. android:dividerHeight="@dimen/divider_height_independent">
  32. </ListView>
  33. </LinearLayout>