Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了使用ListFragment.
ListFragment
所以,我想在 iOS 中滚动到touch StatusBar顶部UItableView。
touch StatusBar
UItableView
请帮忙。
您可以将 OnClickListener 设置为 StatusBar 并使用列表视图的 scrollTo/smoothScrollTo 方法。
像这样的东西
getListView().smoothScrollToPosition(0);
应该有帮助。