我在布局中定义了一个带有 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 的底部。不幸的是,这不能正常工作。它向下滚动,但并非总是如此,也不总是向下滚动。有什么提示吗?