Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstefan-niedermann <info@niedermann.it>2019-10-20 13:16:46 +0300
committerstefan-niedermann <info@niedermann.it>2019-10-20 13:16:46 +0300
commit4494205873cdc306ec62b3a0cee052469a5a7e92 (patch)
treefd4ac89513606f8b166fbc4f045fb7993cce2b5f /app/src/main/res
parent536a52a9a272800d359b94c38f72a3c9d16c0f6c (diff)
Display actual list of boards when not given in EditActivity
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/layout/dialog_board_select.xml20
1 files changed, 8 insertions, 12 deletions
diff --git a/app/src/main/res/layout/dialog_board_select.xml b/app/src/main/res/layout/dialog_board_select.xml
index 3a37f5f4c..c203a21d9 100644
--- a/app/src/main/res/layout/dialog_board_select.xml
+++ b/app/src/main/res/layout/dialog_board_select.xml
@@ -1,15 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<androidx.recyclerview.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:id="@+id/boards"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- xmlns:tools="http://schemas.android.com/tools"
- android:orientation="vertical"
- android:padding="@dimen/standard_margin">
-
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/boards"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:scrollbars="vertical"
- tools:listitem="@layout/dialog_board_select"/>
-</LinearLayout> \ No newline at end of file
+ android:padding="@dimen/standard_margin"
+ android:scrollbars="vertical"
+ app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
+ tools:listitem="@layout/dialog_board_select" /> \ No newline at end of file