有没有办法以编程方式将ScrollView
滚动到某个位置?
我创建了动态TableLayout
,它位于ScrollView
。所以我希望在特定的操作(例如点击按钮等)上,特定的行应该自动滚动到顶部位置。
有可能吗?
答案 0 :(得分:193)
Pragna的答案总是不起作用,试试这个:
mScrollView.post(new Runnable() {
public void run() {
mScrollView.scrollTo(0, mScrollView.getBottom());
}
});
或
mScrollView.post(new Runnable() {
public void run() {
mScrollView.fullScroll(mScrollView.FOCUS_DOWN);
}
});
如果您想滚动开始
mScrollView.post(new Runnable() {
public void run() {
mScrollView.fullScroll(mScrollView.FOCUS_UP);
}
});
答案 1 :(得分:154)
ScrollView sv = (ScrollView)findViewById(R.id.scrl);
sv.scrollTo(0, sv.getBottom());
或
sv.scrollTo(5, 10);
答案 2 :(得分:34)
我希望scrollView在onCreateView()之后直接滚动(不是在点击按钮之后)。为了让它工作,我需要使用ViewTreeObserver:
mScrollView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
mScrollView.post(new Runnable() {
public void run() {
mScrollView.fullScroll(View.FOCUS_DOWN);
}
});
}
});
但请注意,每次调度时都会调用它(例如,如果将视图设置为不可见或类似),所以如果您不再需要它,请不要忘记删除此侦听器:
SDK Lvl上的 public void removeGlobalOnLayoutListener (ViewTreeObserver.OnGlobalLayoutListener victim)
< 16
或
SDK Lvl中的 public void removeOnGlobalLayoutListener (ViewTreeObserver.OnGlobalLayoutListener victim)
> = 16
答案 3 :(得分:19)
使用类似的东西:
mScrollView.scrollBy(10, 10);
或
mScrollView.scrollTo(10, 10);
答案 4 :(得分:18)
这里有很多好的答案,但我只想补充一点。有时您希望将ScrollView滚动到布局的特定视图,而不是完全滚动到顶部或底部。
一个简单的例子:在注册表单中,如果用户点击"注册"如果未填写表单的编辑文本,则需要滚动到该特定编辑文本以告知用户必须填写该字段。
在这种情况下,您可以这样做:
scrollView.post(new Runnable() {
public void run() {
scrollView.scrollTo(0, editText.getBottom());
}
});
或者,如果您想要平滑滚动而不是即时滚动:
scrollView.post(new Runnable() {
public void run() {
scrollView.smoothScrollTo(0, editText.getBottom());
}
});
显然,您可以使用任何类型的视图而不是编辑文本。请注意,getBottom()根据其父布局返回视图的坐标,因此ScrollView中使用的所有视图应仅具有父级(例如,线性布局)。
如果您在ScrollView的子项中有多个父项,我找到的唯一解决方案是在父视图上调用requestChildFocus:
editText.getParent().requestChildFocus(editText, editText);
但在这种情况下,你无法顺利滚动。
我希望这个答案可以帮助有同样问题的人。
答案 5 :(得分:9)
尝试使用scrollTo
方法More Info
答案 6 :(得分:7)
如果您想立即滚动,则可以使用:
ScrollView scroll= (ScrollView)findViewById(R.id.scroll);
scroll.scrollTo(0, scroll.getBottom());
OR
scroll.fullScroll(View.FOCUS_DOWN);
OR
scroll.post(new Runnable() {
@Override
public void run() {
scroll.fullScroll(View.FOCUS_DOWN);
}
});
或者,如果您想要平滑而缓慢地滚动,那么您可以使用它:
private void sendScroll(){
final Handler handler = new Handler();
new Thread(new Runnable() {
@Override
public void run() {
try {Thread.sleep(100);} catch (InterruptedException e) {}
handler.post(new Runnable() {
@Override
public void run() {
scrollView.fullScroll(View.FOCUS_DOWN);
}
});
}
}).start();
}
答案 7 :(得分:4)
是的,你可以。
我们假设您有一个export default class App extends Component<{}> {
// class code
}
,其中有很多Layout
。因此,如果要以编程方式滚动到任何Views
,则必须编写以下代码段:
EG。
<强> content_main.xml 强>
View
<强> MainActivity.java 强>
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:id="@+id/btn"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/txtView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</ScrollView>
如果你想滚动到特定的ScrollView scrollView = (ScrollView) findViewById(R.id.scrollView);
Button btn = (Button) findViewById(R.id.ivEventBanner);
TextView txtView = (TextView) findViewById(R.id.ivEditBannerImage);
,请在这种情况下说 txtview ,只需写下:
View
你完成了。。
答案 8 :(得分:4)
我让这个工作滚动到ScrollView的底部(里面有TextView):
(我把它放在一个更新TextView的方法上)
final ScrollView myScrollView = (ScrollView) findViewById(R.id.myScroller);
myScrollView.post(new Runnable() {
public void run() {
myScrollView.fullScroll(View.FOCUS_DOWN);
}
});
答案 9 :(得分:3)
添加另一个不涉及坐标的答案。
这会使您想要的视图聚焦(但不会到达顶部位置):
yourView.getParent().requestChildFocus(yourView,yourView);
public void RequestChildFocus(View child,View focused)
child - 此ViewParent的子项需要焦点。该视图将包含焦点视图。实际上并不一定是关注焦点。
专注 - 作为实际拥有焦点的儿童后代的视图
答案 10 :(得分:3)
只是页面滚动:
ScrollView sv = (ScrollView) findViewById(your_scroll_view);
sv.pageScroll(View.FOCUS_DOWN);
答案 11 :(得分:3)
**向上滚动到所需的高度。我想出了一些很好的解决方案**
scrollView.postDelayed(new Runnable() {
@Override
public void run() {
scrollView.scrollBy(0, childView.getHeight());
}
}, 100);
答案 12 :(得分:3)
注意:如果你已经在一个帖子中,你必须创建一个新的帖子帖子,或者它不会滚动新的长度直到完全结束(对我来说)。 例如:
void LogMe(final String s){
runOnUiThread(new Runnable() {
public void run() {
connectionLog.setText(connectionLog.getText() + "\n" + s);
final ScrollView sv = (ScrollView)connectLayout.findViewById(R.id.scrollView);
sv.post(new Runnable() {
public void run() {
sv.fullScroll(sv.FOCUS_DOWN);
/*
sv.scrollTo(0,sv.getBottom());
sv.scrollBy(0,sv.getHeight());*/
}
});
}
});
}
答案 13 :(得分:2)
每个人都在发布这么复杂的答案。
我找到了一个简单的答案,滚动到底部,很好:
final ScrollView myScroller = (ScrollView) findViewById(R.id.myScrollerView);
// Scroll views can only have 1 child, so get the first child's bottom,
// which should be the full size of the whole content inside the ScrollView
myScroller.smoothScrollTo( 0, myScroller.getChildAt( 0 ).getBottom() );
并且,如果有必要,您可以将上面的第二行代码放入runnable:
myScroller.post( new Runnable() {
@Override
public void run() {
myScroller.smoothScrollTo( 0, myScroller.getChildAt( 0 ).getBottom() );
}
}
我花了很多时间研究并找到了这个简单的解决方案。我希望它也可以帮到你! :)
答案 14 :(得分:1)
我正在使用带有sv.fullScroll的Runnable(View.FOCUS_DOWN); 它适用于直接问题,但该方法使得ScrollView从整个屏幕中获取Focus,如果你每次都发生AutoScroll,没有EditText将能够从用户接收信息,我的解决方案是使用不同的代码在runnable下:
sv.scrollTo(0,sv.getBottom()+ sv.getScrollY());
在不失去对重要观点的关注的情况下做同样的事情
问候。
答案 15 :(得分:0)
对我有用
pylab.subplot(231)
pylab.scatter(x_a, y_a, color='darkorange')
make_diagonal(x_a, y_a)
pylab.subplot(232)
pylab.scatter(x_b, y_b, color='g')
make_diagonal(x_b, y_b)
pylab.subplot(233)
pylab.scatter(x_c, y_c, color='blue')
make_diagonal(x_c, y_c)
pylab.subplot(234)
pylab.scatter(x_d, y_d, color='r')
make_diagonal(x_d, y_d)
pylab.subplot(235)
pylab.scatter(x_e, y_e, color='purple')
make_diagonal(x_e, y_e)
plt.show()
答案 16 :(得分:0)
private int totalHeight = 0;
ViewTreeObserver ScrollTr = loutMain.getViewTreeObserver();
ScrollTr.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) {
loutMain.getViewTreeObserver().removeGlobalOnLayoutListener(this);
} else {
loutMain.getViewTreeObserver().removeOnGlobalLayoutListener(this);
}
TotalHeight = loutMain.getMeasuredHeight();
}
});
scrollMain.smoothScrollTo(0, totalHeight);
答案 17 :(得分:0)
I had to create Interface
public interface ScrollViewListener {
void onScrollChanged(ScrollViewExt scrollView,
int x, int y, int oldx, int oldy);
}
import android.content.Context;
import android.util.AttributeSet;
import android.widget.ScrollView;
public class CustomScrollView extends ScrollView {
private ScrollViewListener scrollViewListener = null;
public ScrollViewExt(Context context) {
super(context);
}
public CustomScrollView (Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public CustomScrollView (Context context, AttributeSet attrs) {
super(context, attrs);
}
public void setScrollViewListener(ScrollViewListener scrollViewListener) {
this.scrollViewListener = scrollViewListener;
}
@Override
protected void onScrollChanged(int l, int t, int oldl, int oldt) {
super.onScrollChanged(l, t, oldl, oldt);
if (scrollViewListener != null) {
scrollViewListener.onScrollChanged(this, l, t, oldl, oldt);
}
}
}
<"Your Package name ".CustomScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusableInTouchMode="true"
android:scrollbars="vertical">
private CustomScrollView scrollView;
scrollView = (CustomScrollView)mView.findViewById(R.id.scrollView);
scrollView.setScrollViewListener(this);
@Override
public void onScrollChanged(ScrollViewExt scrollView, int x, int y, int oldx, int oldy) {
// We take the last son in the scrollview
View view = (View) scrollView.getChildAt(scrollView.getChildCount() - 1);
int diff = (view.getBottom() - (scrollView.getHeight() + scrollView.getScrollY()));
// if diff is zero, then the bottom has been reached
if (diff == 0) {
// do stuff
//TODO keshav gers
pausePlayer();
videoFullScreenPlayer.setVisibility(View.GONE);
}
}