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.
我正在开发一个应用程序,我想在其中通过搜索栏从列表视图中搜索元素。之后列表视图自动移动到搜索的元素位置。
根据您的 ID 值执行此操作,然后
getListView().setSelection(2);
2在这里是一个随机值,你可以把它编程成一个变量。
如果您希望滚动平滑:
getListView().smoothScrollToPosition(2);
哦!我假设您正在从数据库填充列表视图。