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>2020-07-21 22:01:49 +0300
committerStefan Niedermann <info@niedermann.it>2020-07-21 22:01:49 +0300
commit31fb20b1c8f5731987f7f2cd8f6e8be787d2089a (patch)
tree23cfd003788e725d7b27844df1d2ec8db6ba406d /app/src/main/res
parent7e08f78391c6888cd711849cb8b6548aa92eac14 (diff)
#573 projects - Scrollable
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/layout/fragment_card_edit_tab_details.xml15
1 files changed, 9 insertions, 6 deletions
diff --git a/app/src/main/res/layout/fragment_card_edit_tab_details.xml b/app/src/main/res/layout/fragment_card_edit_tab_details.xml
index 0b7887c71..0cee7271c 100644
--- a/app/src/main/res/layout/fragment_card_edit_tab_details.xml
+++ b/app/src/main/res/layout/fragment_card_edit_tab_details.xml
@@ -170,13 +170,16 @@
android:paddingEnd="@null"
android:text="@string/projects_title" />
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/projects"
+ <androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:scrollbars="vertical"
- app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
- tools:listitem="@layout/item_project" />
+ android:layout_height="wrap_content">
+ <androidx.recyclerview.widget.RecyclerView
+ android:id="@+id/projects"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
+ tools:listitem="@layout/item_project" />
+ </androidx.core.widget.NestedScrollView>
</LinearLayout>
</ScrollView>