初期ロードの直後は先頭に移動する

This commit is contained in:
tateisu 2017-05-14 19:28:05 +09:00
parent 4b4fd00482
commit bea44a9043
1 changed files with 6 additions and 0 deletions

View File

@ -1186,6 +1186,12 @@ class Column implements StreamReader.Callback {
resumeStreaming( false );
}
fireShowContent();
// 初期ロードの直後は先頭に移動する
try{
holder.getListView().setSelection( 0 );
}catch(Throwable ignored){
}
}
};