0

抱歉标题不好,但我的英语说得不太好。我的问题(我从 2 小时开始工作)只是一个细节,但我想知道如何解决它,这可以在未来帮助某人。我已经在 StackOverflow 和其他网站上进行了搜索,但我没有找到解决问题的方法,所以它是:我有一个 textView,我使用它(第二行)使其可滚动:

textViewDesc = (TextView) findViewById(R.id.textViewDesc);
textViewDesc.setMovementMethod(new ScrollingMovementMethod());

我使用 xml 文件的这些属性:

android:scrollbars="vertical"
android:maxLines="100"

当我按下我的应用程序上的按钮时,它会从互联网上搜索文本并将其放入我的 TextView 中。这很好用,但“失败”是 TextView 不是从文本的开头开始,而是以结尾结束(我看不到开头,我必须滚动它)。而且我认为对于使用我的应用程序的人来说,在开始阅读之前他必须开始滚动到 textView 的顶部并不明显。

我希望你能理解我的问题,并帮助我解决这个问题。先感谢您

4

1 回答 1

0

What about textViewDesc.setScrollY(0) ?

Also, I've noticed that TextView scrolling is pretty unreliable. What about putting your TextView inside a ScrollView instead? (http://developer.android.com/reference/android/widget/ScrollView.html)

于 2013-08-08T15:25:33.783 回答