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.
我从一个循环ArrayAdapter中填充了一个,我们会说从 3 到 18。这些数字被放入一个.intswhileSpinner
ArrayAdapter
ints
while
Spinner
我的问题是:是否可以自动选择一个给定的数字,比如 8?
编辑:更改为选中
首先,您必须找出这个数字在您的ArrayAdapter(例如 8)中的位置:
int pos = myAdapter.getPosition(8);
然后只需设置选择:
mySpinner.setSelection(pos);