Je voudrais un ScrollView pour commencer tout en bas. Toutes les méthodes?
Réponses
Trop de publicités?
hungson175
Points
1329
https
Points
81
Ce qui a fonctionné le mieux pour moi est
scroll_view.post(new Runnable() {
@Override
public void run() {
// This method works but animates the scrolling
// which looks weird on first load
// scroll_view.fullScroll(View.FOCUS_DOWN);
// This method works even better because there are no animations.
scroll_view.scrollTo(0, scroll_view.getBottom());
}
});
ademar111190
Points
2855
Je incrément de fonctionner à la perfection.
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();
}
Frank
Points
1074