次のURLを参照しました。
しかし、それは私にとっては機能しません、JavaファイルとXMLファイルをどこに置くのですか?
ありがとう。
カスタム行の xml でこのプロパティを使用しました。
<TextView
android:id="@+id/descr"
android:layout_height="wrap_content"
android:layout_width="200dp"
android:text="Lorem Ipsum is simply dummy text of the printing and typesetting industry.checking text "
android:textSize="12sp"
android:textColor="#000000"
android:layout_toRightOf="@id/icon"
android:layout_below="@id/subtitle"
android:layout_toLeftOf="@id/distance"
android:maxLines="3"
android:scrollbars="vertical"
/>
次に、このようにカスタムアダプターにテキストを設定し、
holder.des.setText(list.get(position).getSummary());
holder.des.setMovementMethod(new ScrollingMovementMethod());
テキストが 3 行を超える場合は、スクロールします。