tableLayout 我的觀點的數據 /tableLayout
/滾動
我顯示的數據。當我看最後一排男,一旦我的UI更新我想滾動到頂部位置。
什麼應該是我需要爲此操作完成的代碼。提前致謝。
tableLayout 我的觀點的數據 /tableLayout
/滾動
我顯示的數據。當我看最後一排男,一旦我的UI更新我想滾動到頂部位置。
什麼應該是我需要爲此操作完成的代碼。提前致謝。
scrollView.fullScroll(ScrollView.FOCUS_UP);
OR
scrollView.scrollTo(0, 0);
應該工作
call listView.setSelectionAfterHeaderView();滾動到頂部
你可以,做這樣的
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);