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。谢谢你。
我不知道我是否理解正确。
但只需设置一个标志,如下所示:
boolean isTriggeredBefore = false;
如果那是错误的,只需为该 arrayadapter 使用另一个值,例如
if(isTriggeredBefore) ArrayAdapter(this, R.array.list, R.id.tv); else ArrayAdapter(this, R.array.listFirstTime, R.id.tv);
希望有帮助!