-1
私の英語では申し訳ありませんが、私のrecyclerviewに問題があります。画面がスクロールすると、項目はmatch_parentにサイズ変更されます。スクロールする前にRecyclerViewでの問題高さ項目
:スクロール後
:ここ
は私のコードです:
<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>
は、その高さはhotcodedかmatchparentされていないことを確認してください、あなたのrow.xmlであなたのrow.xml –
を共有しています。 –
はい、解決策は、wrap_contentの代わりにlayout_height match_parentがあることでした。 :( – Ghost