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.
我正在从 MySQL 数据库动态地将项目添加到我的微调器。在进行检查的那一刻,我想知道下拉列表中有多少项目。
谢谢。
您可以使用以下内容获取微调器的适配器中的项目数:
mySpinner.getCount();
getCount()返回 Spinner 中有多少项目
我想你正在寻找这个:
spinner.getAdapter().getCount();