Попробуйте вместо этого NestedScrollView, это сработает. Сделайте NestedScrollView
родительскую группу просмотра. Также убедитесь, что его закрывающий тег находится на одном уровне. В вашем случае у вас есть несоответствие между открывающими и закрывающими тегами .. Вы начали с RelativeLayout
, а закрыли с </ScrollView>
. Ваша родительская группа просмотра <RelativeLayout>
, сделайте это <NestedScrollView>
и закройте родительскую группу просмотра с помощью </NestedScrollView>
Обновить
<NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/containerProfile"
tools:context=".ui.profile.ProfileActivity">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/scrollView"
android:fillViewport="true"
android:paddingTop="10dp"
android:layout_below="@+id/view">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/rl1">
<RelativeLayout
android:id="@+id/myprofile"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin">
</RelativeLayout>
<com.google.android.material.tabs.TabLayout
android:id="@+id/tab_Layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/myprofile"/>
<androidx.viewpager.widget.ViewPager
android:id="@+id/view_Pager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_below="@+id/tab_Layout">
</androidx.viewpager.widget.ViewPager>
</RelativeLayout>
</NestedScrollView>
Примечание - Не забудьте обновить свое представление ids