2017-08-15 10 views
0

我的列表視圖處於可滾動視圖,當達到上限或下限時,列表視圖不會從界限顯示藍色圓圈。我如何使佈局顯示它? 添加overScrollMode =總是仍然不起作用,此佈局添加到Android提供的ScrollingActivity示例中。列表視圖當用戶達到限制時,上界和下界不會相互影響

<?xml version="1.0" encoding="utf-8"?> 
<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" 
    android:overScrollMode="always" 
    android:fillViewport="true> 

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

     <android.support.design.widget.CoordinatorLayout 
      android:layout_width="match_parent" 
      android:layout_height="50dp" 
      android:id="@+id/snackBarLocation"> 

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

     <ListView 
      android:id="@+id/list2" 
      android:layout_width="match_parent" 
      android:layout_height="55dp"/> 

     <android.support.v4.widget.Space 
      android:layout_width="match_parent" 
      android:layout_height="50dp" 
      /> 

     <android.support.v7.widget.RecyclerView 
      android:id="@+id/list" 
      android:layout_width="match_parent" 
      android:layout_height="0dp" 
      android:layout_weight="1"/> 

     <android.support.v4.widget.Space 
      android:layout_width="match_parent" 
      android:layout_height="50dp" 
      /> 

     <Button 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="Text" 
      /> 

     <android.support.v4.widget.Space 
      android:layout_width="match_parent" 
      android:layout_height="10dp" /> 

    </LinearLayout> 
</android.support.v4.widget.NestedScrollView> 
+0

您可能想向我們展示一些您嘗試過的代碼:) – Rafalon

+0

我添加了活動的佈局 –

回答