4

我有一個RecycleView有一個CardsViews列表。 RecycleView位於NestedScrollView中,因爲我有一個可摺疊標題。 滾動沒有加速,當我從屏幕上拿下手指時停止滾動,並且我想加速滾動。加速滾動回收視圖

這些是我的佈局。

<android.support.v4.widget.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" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    tools:context=".articles.ArticlesActivity" 
    tools:showIn="@layout/activity_articles" 
    > 


    <android.support.v7.widget.RecyclerView 
     android:id="@+id/articles_lista" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:fadeScrollbars="true" 
     android:scrollbars="vertical" 
     /> 

</android.support.v4.widget.NestedScrollView> 

我的CardView佈局容器。

<android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto" 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/articles_card" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    card_view:cardCornerRadius="6dp" 
    card_view:cardUseCompatPadding="true" 
    card_view:cardPreventCornerOverlap="true" 
    android:layout_marginTop="0dp" 
    android:layout_marginBottom="0dp" 
    android:layout_marginLeft="10dp" 
    android:layout_marginRight="10dp" 
    card_view:cardElevation="5dp" 

    android:overScrollMode="always" 
    android:fadeScrollbars="true"> 

    <LinearLayout 
     android:orientation="vertical" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 

     <TextView 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:padding="10dp" 
      android:id="@+id/article_card_title" 
      android:textAppearance="?android:attr/textAppearanceLarge" 
      android:textColor="#000"/> 

    </LinearLayout> 

</android.support.v7.widget.CardView> 

和Java代碼:

 RecyclerView recyclerView = (RecyclerView)findViewById(R.id.articles_lista); 
     LinearLayoutManager layoutManager = new LinearLayoutManager(this, LinearLayoutManager.VERTICAL, false); 
     recyclerView.setLayoutManager(layoutManager); 
     ArticlesAdapter adapter = new ArticlesAdapter(Mock.getNoticias(1L), this); 
     recyclerView.setAdapter(adapter); 

感謝。

編輯:

我的新佈局的工作,看起來像:

<RelativeLayout 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" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    tools:context="newser.sab.com.newser.articles.ArticlesActivity2" 
    tools:showIn="@layout/app_bar_articles2"> 

    <android.support.v7.widget.RecyclerView 
     android:id="@+id/articles_lista" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:fadeScrollbars="true" 
     android:scrollbars="vertical" 
     /> 

</RelativeLayout> 
+0

我有完全一樣的問題加入這一行你XML文件,任何解決方案 – AVEbrahimi

回答

0

是否正在改變佈局:

<RelativeLayout 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" 
app:layout_behavior="@string/appbar_scrolling_view_behavior" 
tools:context="newser.sab.com.newser.articles.ArticlesActivity2" 
tools:showIn="@layout/app_bar_articles2"> 

<android.support.v7.widget.RecyclerView 
    android:id="@+id/articles_lista" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fadeScrollbars="true" 
    android:scrollbars="vertical" 
    /> 

0

那是因爲你設置你的RecyclerView裏面的ScrollView。 所以要啓用其滾動更快RecyclerView標籤

android:nestedScrollingEnabled="false" 

或做動態地添加這一行你的Java文件

recyclerView.setNestedScrollingEnabled(false);