How to make my layout able to scroll down?

Viewed 230369

I can not scroll down the screen to view the data in the "Replied By:" section. How can I make my layout scrollable?

alt text

5 Answers

Yes, it is very Simple. Just Put your Code Inside this:

<androidx.core.widget.NestedScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" 
    android:layout_height="match_parent">

//YOUR CODE

</androidx.core.widget.NestedScrollView>
Related