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.
我有一个微调器,它加载四个不同的值一、二、三、四。 'one'是微调器中的默认选择值。在微调器弹出窗口中,选择一个然后'onItemSelected()'不会触发......
但选择任何其他然后它就火了......那么如何实施?请帮我....
这是android中的内置问题。而不是将第一个值放入其中。在第一个位置插入像“---Select Value---”这样的文本,并在该文本之后添加所有值。所以默认情况下你会看到这个文本。然后您可以轻松选择任何您想要的。
喜欢:
String[] items = new String[] {"---Select Any---","One", "Two", "Three"};