2012-04-20 82 views
1

滾動如何將滾動條/視圖置於頂部位置?

tableLayout 我的觀點的數據 /tableLayout

/滾動

我顯示的數據。當我看最後一排男,一旦我的UI更新我想滾動到頂部位置。

什麼應該是我需要爲此操作完成的代碼。提前致謝。

回答

2
scrollView.fullScroll(ScrollView.FOCUS_UP); 

OR

scrollView.scrollTo(0, 0); 

應該工作

0

call listView.setSelectionAfterHeaderView();滾動到頂部

0

你可以,做這樣的

int idx = list.getFirstVisiblePosition(); 
View vfirst = list.getChildAt(0); 
int pos = 0; 
if (vfirst != null) pos = vfirst.getTop(); 

//Restore the position 
list.setSelectionFromTop(idx, pos); 
相關問題