0

screen爲什麼我的回收商視圖不會滾動?

一直scowering在互聯網上,這似乎發生了很多了很多原因,但我解決不了我的兩個回收意見進入查看傳呼機,但不會滾動,香港專業教育學院的嘗試嵌套的滾動視圖視圖尋呼機和片段持有的回收視圖,嘗試使用線性佈局的滾動行爲標籤,但沒有喜悅我試着改變佈局管理器水平,而它不滾動它確實給了我一個滾動的動畫查看佈局結束時,我正在使用網格佈局,我也聽說它可以使用應用程序欄佈局可以有人提供一些建議

<?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:layout_width="match_parent" 
android:layout_height="match_parent" 
android:fitsSystemWindows="true" 
tools:context=".MainActivity"> 

<android.support.design.widget.AppBarLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:theme="@style/AppTheme.AppBarOverlay"> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="?attr/actionBarSize" 
     android:background="?attr/colorPrimary" 
     app:popupTheme="@style/AppTheme.PopupOverlay" /> 
<RelativeLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" 
    android:id="@+id/wherethecardsgo"> 

    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_weight="1"> 

     <android.support.v4.view.ViewPager 
      android:id="@+id/viewpager2" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:background="@drawable/border" 
      android:layout_margin="10dp" 
      app:layout_behavior="@string/appbar_scrolling_view_behavior" 
      /> 

    <android.support.design.widget.FloatingActionButton 
     android:id="@+id/fab2" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_margin="@dimen/fab_margin" 
     android:src="@drawable/ic_playlist_play_white_24dp" 
     android:layout_alignBottom="@id/viewpager2" 
     android:layout_alignParentRight="true" 
     android:layout_alignParentEnd="true" /> 

    </RelativeLayout> 

<RelativeLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_weight="1"> 

<android.support.design.widget.TabLayout 
     android:id="@+id/tabs" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     app:tabMode="scrollable" 
     app:tabGravity="fill" 
    android:layout_alignParentTop="true" 
    android:layout_alignParentLeft="true" 
    android:layout_alignParentStart="true" /> 


<android.support.v4.view.ViewPager 
    android:id="@+id/viewpager" 
    android:background="@color/windowBackground" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    android:layout_below="@+id/tabs" /> 

</RelativeLayout> 
    </LinearLayout> 
</RelativeLayout> 
</android.support.design.widget.AppBarLayout> 
<include layout="@layout/content_main" /> 


<android.support.design.widget.FloatingActionButton 
    android:id="@+id/fab" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_gravity="bottom|end" 
    android:layout_margin="@dimen/fab_margin" 
    android:src="@drawable/plus" /> 

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

這是回收者的意見之一

<RelativeLayout 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=".TwoFragment"> 


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

</RelativeLayout> 
+0

最後recyclerview的某些部分不滾動的。這是你的問題嗎? – Masum

+0

是啊@Masum的回收者視圖不滾動,所以屏幕的最後一部分是失去了1行下一排這是一半可見 –

回答

0

解決

這是appbar偷焦點的問題,所以我推appbar我佈局的底部,突然我回收的觀點是改變現在滾動!我的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:layout_width="match_parent" 
android:layout_height="match_parent" 
android:fitsSystemWindows="true" 
tools:context=".MainActivity"> 



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


<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" 
    android:background="@color/colorPrimary" 
    android:id="@+id/wherethecardsgo"> 

    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_weight="1"> 

     <android.support.v4.view.ViewPager 
      android:id="@+id/viewpager2" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:background="@drawable/border" 
      android:layout_marginLeft="10dp" 
      android:layout_marginBottom="10dp" 
      android:layout_marginRight="10dp" 
      android:layout_marginTop="64dp" 
      app:layout_behavior="@string/appbar_scrolling_view_behavior" 
      /> 

    <android.support.design.widget.FloatingActionButton 
     android:id="@+id/fab2" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_margin="@dimen/fab_margin" 
     android:src="@drawable/ic_playlist_play_white_24dp" 
     android:layout_alignBottom="@id/viewpager2" 
     android:layout_alignParentRight="true" 
     android:layout_alignParentEnd="true" /> 

    </RelativeLayout> 


<RelativeLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_weight="1"> 

<android.support.design.widget.TabLayout 
     android:id="@+id/tabs" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
    android:background="@color/colorPrimary" 
     app:tabMode="scrollable" 
     app:tabGravity="fill" 
    android:layout_alignParentTop="true" 
    android:layout_alignParentLeft="true" 
    android:layout_alignParentStart="true" /> 


<android.support.v4.view.ViewPager 
    android:id="@+id/viewpager" 
    android:background="@color/windowBackground" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    android:layout_below="@+id/tabs" /> 

</RelativeLayout> 
    </LinearLayout> 
</RelativeLayout> 

<android.support.design.widget.AppBarLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:theme="@style/AppTheme.AppBarOverlay"> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="?attr/actionBarSize" 
     android:background="?attr/colorPrimary" 
     app:popupTheme="@style/AppTheme.PopupOverlay" /> 

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

<include layout="@layout/content_main" /> 

<android.support.design.widget.FloatingActionButton 
    android:id="@+id/fab" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_gravity="bottom|end" 
    android:layout_margin="@dimen/fab_margin" 
    android:src="@drawable/plus" /> 

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

在您的recyclerView中添加這兩個屬性。

android:clipToPadding="false" 
android:paddingBottom="60dp" 

paddingBottom來的值,你可以根據您的要求

+0

愛你的想法,但這並沒有工作,嘗試踢它慢慢從60到160到260所有到2660的方式,但它只是不想滾動 –

0

或者使用簡單試試這個在您的活動或片段

recyclerView.setOnTouchListener(new View.OnTouchListener() { 
     @Override 
     public boolean onTouch(View v, MotionEvent event) { 
      getView().getParent().requestDisallowInterceptTouchEvent(true); // Pour Le Scroll pour qu'il soit opérationnel 
      return false; 
     } 
    }); 
相關問題