简体   繁体   English

带有viewpager的协调器布局,滚动不起作用

[英]Coordinator layout with viewpager, scroll doesn't work

I am working on this environment,我正在这个环境中工作,

compileSdkVersion 25
    buildToolsVersion '25.0.0'
    defaultConfig {
        minSdkVersion 21
        targetSdkVersion 25

with these dependencies:具有这些依赖项:

compile 'com.android.support:appcompat-v7:25.0.1'
    compile 'com.android.support:design:25.0.1'
    compile 'com.android.support:recyclerview-v7:25.0.1'
    compile 'com.android.support:cardview-v7:25.0.1'

I want to make a view with a coordinatorlayout but containing a viewPager, not a recyclerview.我想用 coordinatorlayout 创建一个视图,但包含一个 viewPager,而不是一个 recyclerview。 this is the layout file:这是布局文件:

<?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"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|enterAlways"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="72dp"
            app:tabGravity="fill"
            app:tabMode="fixed" />
    </android.support.design.widget.AppBarLayout>

    <android.support.v4.view.ViewPager
        android:id="@+id/viewpager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />

</android.support.design.widget.CoordinatorLayout>

My problem is that the scroll doesn't work for the view.我的问题是滚动不适用于视图。 I see some posts that implementing the onTouch method to simulate the scroll, but i want to work with the coordinatorLayout.我看到一些实现 onTouch 方法来模拟滚动的帖子,但我想使用 coordinatorLayout。 Thanks.谢谢。

To work with CoordinatorLayout it needs a View that implements NestedScrollingChild interface inside the ViewPager, like NestedScrollView.要使用 CoordinatorLayout,它需要一个在 ViewPager 中实现 NestedScrollingChild 接口的 View,如 NestedScrollView。 So, nest your LinearLayout as child of a NestedScrollView.因此,将 LinearLayout 嵌套为 NestedScrollView 的子项。

<androidx.core.widget.NestedScrollView android:layout_width="match_parent" android:layout_height="match_parent" android:fillViewport="true" app:layout_behavior="@string/appbar_scrolling_view_behavior" > <android.support.v4.view.ViewPager android:id="@+id/viewpager" android:layout_width="match_parent" android:layout_height="200dp"/> <!--Wrap content will not work here you have to give fix height--> </androidx.core.widget.NestedScrollView>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM