ScrollView慢滚动和项目消失

时间:2017-04-04 12:44:47

标签: android android-layout android-recyclerview android-xml android-scrollview

我试图添加ScrollView来保存标题和RecyclerView。

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

    <RelativeLayout
        android:id="@+id/profile"
        android:orientation="vertical" android:layout_width="match_parent"
        android:layout_height="100dp"
        android:background="?attr/colorPrimary">

        <ImageView
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:id="@+id/imageView"
            android:adjustViewBounds="true"
            android:cropToPadding="false" />


    </RelativeLayout>


    <ProgressBar
        android:id="@+id/progressBar1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true" />

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentStart="true"
        android:scrollbars="none"
        android:layout_alignParentLeft="true" />


    </RelativeLayout>

</ScrollView>

但我尝试了两个问题:

  • 相对布局ID /配置文件正在消失。当我打开活动时,它会显示1秒钟并消失。

  • RecyclerView滚动速度太慢。

任何想法?

5 个答案:

答案 0 :(得分:5)

默认情况下,RecyclerView有自己的滚动条,与您的ScrollView冲突。要解决此问题,请将ScrollView更改为NestedScrollView

答案 1 :(得分:1)

   recylerview.setNestedScrollingEnabled(false);

请设置recylerview的此属性。

答案 2 :(得分:1)

将RecyclerView放入XML格式的NestedScrollView中

 <android.support.v4.widget.NestedScrollView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                app:layout_behavior="@string/appbar_scrolling_view_behavior">
            <android.support.v7.widget.RecyclerView
                 android:id="@+id/recycler_pracstice_loaction"
                 android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:scrollbars="none" />
            </android.support.v4.widget.NestedScrollView>

在活动中:

recyclerView.setNestedScrollingEnabled(false);

当然,你会得到你想要的。这将解决您的Recyclerview滚动问题

在您的活动中添加以下代码,它将解决您的自动滚动问题。

recyclerView.setFocusable(false);

答案 3 :(得分:1)

您可以查看此项目。它不是图书馆。它是一个演示代码......我想你在寻找什么

点击此处https://github.com/kmshack/Android-ParallaxHeaderViewPager

答案 4 :(得分:0)

将您的滚动视图更改为NestedScrollView。

  

相对布局ID /配置文件正在消失。当我打开   活动它出现1秒后消失。

您的recyclerview正在加载itens hover the relativeLayout,因此,请在您的recyclerview中添加:

android:layout_below="@+id/profile"
  

Recyclerview滚动速度太慢。

只需在您的活动中添加以下代码:

recylerview.setNestedScrollingEnabled(false);