scrollview = (ScrollView) findViewById(R.id.scroll_view) ;
scrollview.setSmoothScrollingEnabled ( true );
scrollview.smoothScrollBy (int dx, int dy); //dx,dy.. offset (Relative Position)
scrollview.smoothScrollTo (int x, int y); //scroll to x and y (actual position)
2条答案
按热度按时间qnzebej01#
引用this,
你可以使用一个
ScrollView
,把你的EditText
放在里面,并提到你需要快速/平滑滚动的位置。olqngx592#