Я не могу правильно прокручивать ScrollView. Он всегда отсекает содержимое внизу, как если бы это был обычный LinearLayout.
Мой код
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true" >
<LinearLayout android:id="@+id/scroll_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:isScrollContainer="true"
android:orientation="vertical" >
Конечно, я уже пытался добавить/удалить свойства "fillViewport" и "isScrollContainer", и он ничего не изменил.
Спасибо заранее.