В течение нескольких дней я пытался реализовать TabLayout с ViewPager, используя фрагменты.Несмотря на то, что показ фрагмента и пролистывание между вкладками работает, я не могу прокрутить вертикально фрагмент, который в данный момент показан в ViewPager.
Я нашел некоторые решения для SO, которые предлагают реализовать (Nested) ScrollViews влибо фрагмент, либо макет действия, чтобы сделать прокрутку содержимого.Я попробовал несколько подходов (хотя ни один из них не работает) - я пришел к выводу, что я сделал что-то не так, и в настоящее время я не могу понять это.
Я использую следующий код в порядкедля достижения текущих результатов:
activity.xml
<?xml version="1.0" encoding="utf-8"?><android.support.design.widget.CoordinatorLayout 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:fitsSystemWindows="true"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:fitsSystemWindows="true"
android:layout_height="match_parent"
android:theme="@style/AppTheme.AppBarOverlay">
<RelativeLayout
android:id="@+id/scV"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
<android.support.design.widget.TabLayout
android:id="@+id/caj_tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="@id/door_img [exists, not pasted]"
android:elevation="6dp"
android:minHeight="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:visibility="visible" />
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_alignParentBottom="true"
android:layout_below="@id/door_img"
android:layout_height="match_parent"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</RelativeLayout>
</android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>
фрагмент.xml:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Test">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest"
android:textSize="80sp" />
</FrameLayout>
Настройка макета вкладки:
TabLayout tabs = (TabLayout) findViewById(R.id.caj_tab_layout);
final ViewPager pager = (ViewPager) findViewById(R.id.pager);
final PagerAdapter adapter = new PagerAdapter(getSupportFragmentManager());
pager.setAdapter(adapter);
tabs.setupWithViewPager(pager);
Я ожидаю, что смогу прокрутить фрагмент, но это невозможно.Я пропустил xml-тег?Большое спасибо за вашу помощь.