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.
我正在做一个 android 应用程序并显示列出数据的详细视图,我需要设置微调器的选定项目。我该如何设置?
我是android开发领域的新手..任何人都可以帮助我
使用widget类的setSelection(...)方法,Spinner可以设置选中项的位置。
setSelection(...)
Spinner
例如:
spinner.setSelection(position);