2

次のURLを参照しました。

カスタムリストビュー内でテキストビューがスクロールしない

しかし、それは私にとっては機能しません、JavaファイルとXMLファイルをどこに置くのですか?

ありがとう。

4

1 に答える 1

1

カスタム行の 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 行を超える場合は、スクロールします。

于 2012-11-01T07:17:30.553 に答える