Add new items to top of list view on Android?

后端 未结 7 1509
梦谈多话
梦谈多话 2020-11-30 03:19

Android has the transcript mode to allow to automatically scroll a list view to the bottom when new data is added to the adapter.

Can this be somehow reversed so tha

7条回答
  •  Happy的楠姐
    2020-11-30 03:55

    Shouldn't it be enough to just add a smoothScrollToPosition(0) whenever stuff gets added to the ListView? Don't think there's an automatic scroll option.

提交回复
热议问题