2016-09-08 22 views
-1

私の英語では申し訳ありませんが、私のrecyclerviewに問題があります。画面がスクロールすると、項目はmatch_parentにサイズ変更されます。スクロールする前にRecyclerViewでの問題高さ項目

:スクロール後

enter image description here

:ここ

enter image description here

は私のコードです:

<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" 
    > 

    <include 
    android:id="@+id/toolbar" 
    layout="@layout/toolbar"></include> 

    <android.support.v7.widget.RecyclerView 
    android:layout_below="@+id/toolbar" 
    android:id="@+id/recyclerViewNotas" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:clickable="true" 
    > 

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

</RelativeLayout> 
+0

は、その高さはhotcodedかmatchparentされていないことを確認してください、あなたのrow.xmlであなたのrow.xml –

+0

を共有しています。 –

+0

はい、解決策は、wrap_contentの代わりにlayout_height match_parentがあることでした。 :( – Ghost

答えて