Я определил scrollview с 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. К сожалению, это не сработало. Он прокручивается вниз, но не всегда, и не всегда на дно. Любые подсказки?