这感觉就像一个没脑子但不知怎的,我被卡住了。该视图不允许我滚动它。好像在ViewPager
中膨胀的片段的高度没有被计算出来。搜索SO建议我需要编写自己的ViewPager
并覆盖onMeasure()
,但我无法相信我必须走得那么简单。
这是我的布局,为方便起见略有简化。 ViewPager
填充了片段占据屏幕之外的空间(垂直)。尽管如此,屏幕上的任何内容都无法滚动。那是为什么?
<ScrollView
android:id="@+id/scroll_view"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/header_image_view"
android:layout_width="0dp"
android:layout_height="170dp"
app:layout_constraintTop_toTopOf="parent"/>
<TextView
android:id="@+id/title_text_view"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintTop_toBottomOf="@id/header_image_view"/>
<Button
android:id="@+id/resume_training_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintTop_toBottomOf="@id/title_text_view"/>
<android.support.design.widget.TabLayout
android:id="@+id/lesson_table_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
app:layout_constraintTop_toBottomOf="@id/resume_training_button">
</android.support.design.widget.TabLayout>
<android.support.v4.view.ViewPager
android:id="@+id/view_pager"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintTop_toBottomOf="@id/lesson_table_layout">
</android.support.v4.view.ViewPager>
</android.support.constraint.ConstraintLayout>
</ScrollView>
这是一个示例视图。 Lorem ipsum文本持续很长时间,我希望整个屏幕可以滚动,但它不是。
提前致谢!
答案 0 :(得分:1)
存在此类问题,有时ScrollView
和ViewPager
切换焦点。如果ViewPager
中有ScrollView
,并且您希望它在触摸它时始终保持清晰并且ScrollView
永远无法获得焦点,那么设置requestDisallowInterceptTouchEvent
即可。
mViewPager= (ViewPager) findViewById(R.id.pager);
mViewPager.setAdapter(adapter);
mViewPager.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
mViewPager.getParent().requestDisallowInterceptTouchEvent(true);
return false;
}
});
在此thread
中查找更多答案编辑:
我认为可行的另一种方法是以编程方式设置滚动到你的tablayout
tabLayout.setTabMode(TabLayout.MODE_SCROLLABLE);
答案 1 :(得分:0)
尝试使用nestedScrollView而不是scrollView ..尝试以下代码段..
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@id/fragment_detail"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_vertical"
android:orientation="vertical">
...Content...
<android.support.v4.view.ViewPager
android:id="@+id/view_pager"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintTop_toBottomOf="@id/lesson_table_layout">
</android.support.v4.view.ViewPager>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
&#13;
答案 2 :(得分:0)
我最后重写了一下。在TabLayout
上方滚动是没有意义的,所以我最终使用了CoordinatorLayout
,根据
<CoordinatorLayout> <-- width/height = match_parent
<AppBarLayout> <-- width = match_parent, height = wrap_content
<ImageView/>
<TextView/>
<Button/>
<TabLayout/>
<AppBarLayout/>
<ViewPager/> <-- width/height = match_parent, app:layout_behavior="@string/appbar_scrolling_view_behavior"
<CoordinatorLayout/>
插入ViewPager
的每个片段现在都包含在NestedScrollView
。
感谢其他答案。它可能会帮助别人!