レイアウトに texteedit を使用してスクロールビューを定義しました。
<ScrollView android:fillViewport="true"
android:layout_marginBottom="50dip"
android:id="@+id/start_scroller"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:fadingEdge="none">
<TextView
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
</TextView>
</ScrollView>
次のメソッドを使用して、この ScrollView にテキストを追加します。
public void writeToLogView(String textMsg) {
if (text.getText().equals("")) {
text.append(textMsg);
} else {
text.append("\n" + textMsg);
scroller.scrollBy(0, 1000000);
}
}
ご覧のとおり、テキストを追加して、ScrollView の一番下までスクロールしようとしています。残念ながら、これは正しく機能しません。下にスクロールしますが、常にではなく、常に一番下までスクロールするとは限りません。ヒントはありますか?