diff --git a/app/src/main/res/layout/inbox_main.xml b/app/src/main/res/layout/inbox_main.xml index b5f50c8cdeaf7b4413cb9d15a7c7450e622b2319..7d05c4c8c38306c9fe8d128db2b76c09a45ba1a6 100644 --- a/app/src/main/res/layout/inbox_main.xml +++ b/app/src/main/res/layout/inbox_main.xml @@ -1,7 +1,20 @@ <?xml version="1.0" encoding="utf-8"?> -<android.support.constraint.ConstraintLayout +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> + <ScrollView + android:layout_width="match_parent" + android:layout_height="match_parent"> + <LinearLayout + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="vertical"> + <androidx.recyclerview.widget.RecyclerView + android:layout_width="match_parent" + android:layout_height="match_parent"/> + </LinearLayout> + </ScrollView> -</android.support.constraint.ConstraintLayout> \ No newline at end of file + +</LinearLayout> \ No newline at end of file