Skip to content

Commit

Permalink
Scroll view added for issue fossasia#3051*
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishank23 committed Jun 9, 2020
1 parent a661458 commit 02729ba
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions app/src/main/res/layout/content_accounts.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/accounts_parent"
android:layout_width="match_parent"
android:layout_height="match_parent"
Expand All @@ -13,14 +14,21 @@
android:id="@+id/accounts"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/bottombar"
android:layout_below="@id/toolbar">
android:layout_above="@id/bottombar"
android:layout_below="@id/toolbar"
android:nestedScrollingEnabled="true">

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/accounts_recycler_view"
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/toolbar" />
android:layout_height="match_parent">

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/accounts_recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/toolbar"
android:persistentDrawingCache="scrolling" />
</ScrollView>

</androidx.coordinatorlayout.widget.CoordinatorLayout>

Expand Down

0 comments on commit 02729ba

Please sign in to comment.