Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可以在android中自动滚动吗?我希望我的布局在我的用户加载屏幕时开始滚动,是否可以在他们不必触摸屏幕的情况下做到这一点?
我不认为,有一个默认的方法来解决这个问题。但是,ScrollView该类(您可能需要一个ScrollView, 以使内容可滚动)具有一种方法,该方法使您可以平滑地滚动内容:
ScrollView
smoothScrollBy(int,int)
第一个 (x) 值是水平滚动,第二个 (y) 值是垂直滚动。您可以使用后台线程使用所需的参数调用此方法,直到到达 ScrollView 的末尾。