今、私はTextViewの下に表示されるはずの単純なRecyclerViewを使用しています。しかし、私がRecyclerViewに多くのアイテムを取り込むと、それが途切れてスクロールしなくなります。私がRecyclerViewsから覚えていることは、スクロールするときに基本的に行ったすべての実装がそのまま機能していることです。多くのアイテムがある場合、RecyclerViewは一番下にスクロールしません。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
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"
tools:context="david.projectclouds.MainActivity"
tools:showIn="@layout/app_bar_main">
<TextView
android:id="@+id/Date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/_20sdp"
android:paddingLeft="@dimen/_20sdp"
android:paddingTop="@dimen/_20sdp"
android:textAllCaps="true"
android:textColorLink="@color/colorAccent"
android:textSize="30sp"
android:typeface="sans"
/>
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toBottomOf="@+id/Date"
android:scrollbars="vertical"
/>
</android.support.constraint.ConstraintLayout>
これは私の現在の主な活動XMLです。コードを追加する必要があるかどうか教えてください。 layout_heightは= "wrap_contentは" あるべき "match_parent":
アンドロイドを使用するには? –
それは私のtextViewを描画します。そして問題は依然として続く。 Iveはこれを複数回試しました – Nephilim
recyclerViewのLayoutManagerを設定しましたか? –