2011年9月26日月曜日

textView を含むScrollViewをコントロール

textViewを含んだScrollViewについて、textViewに長いテキスト文字をプログラムから挿入した場合に、一番下の行まで自動スクロールする時の方法です。

private TextView textViewInfo;
private ScrollView scrollViewInfo;


textViewInfo.setText(text);
scrollViewInfo.post(new Runnable() {
    public void run() {
        scrollViewInfo.scrollTo(textViewInfo.getMeasuredWidth(), textViewInfo.getMeasuredHeight());
    }
});

0 件のコメント:

コメントを投稿