无法滚动RecyclerView

时间:2015-10-28 19:55:44

标签: android android-layout android-recyclerview

我无法将RecyclerView滚动到最后。它切断了我的最后一个元素,我完全不知道为什么。我的项目中有另一个RecyclerView,它似乎也被打破了。 Broken RecyclerView

这是我的布局代码:

<?xml version="1.0"?>
<configuration>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
        <bindingRedirect oldVersion="0.0.0.0-7.0.0.0" newVersion="7.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>

另一个破碎的RecyclerView:

<RelativeLayout 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:id="@+id/container"
    android:padding="10dp">

    <android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/cv"
        app:cardCornerRadius="2dp"
        app:cardUseCompatPadding="true">

        <RelativeLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="220dp"
            android:orientation="horizontal">

(...)

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

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerView2"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/textView17"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:text="HISTORIA"
        android:id="@+id/textView17"
        android:layout_below="@+id/cv"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true" />

</RelativeLayout>

任何想法,因为我没有任何想法。

4 个答案:

答案 0 :(得分:1)

MainActivity布局中的ViewPager出现问题。解决方案是将paddingTop参数设置为105dp(以覆盖工具栏和TabLayout)并删除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="match_parent"
   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="wrap_content"
    android:paddingTop="105dp"/>

感谢@oguzhand,指导我解决方案!

答案 1 :(得分:1)

您在第一次布局中遇到了问题。在RelativeLayout中,match_parent大小的元素与布局本身的大小完全相同。这是RecyclerView的情况。但是,它不在布局的顶部,因为它位于@+id/textView17 TextView下方。所以你错过了大约250~300dp的RecyclerView(卡片+文本的高度)。在这种情况下,您应该使用垂直LinearLayout,这正是他们所做的。只需将RecyclerView的高度设置为0,将权重设置为1。

答案 2 :(得分:0)

您应该在RecyclerView中设置填充底部。像这样:

<android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerView2"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/textView17"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:paddingBottom="20dp" />

我希望能帮助你,抱歉我的英语不好。

答案 3 :(得分:0)

添加alignParentBottom =&#34; true&#34;到recyclerView。这应该将它固定到底部边缘,顶部将通过已有的layoutBelow标签固定到textview