当我在第一个微调器中选择项目(除第一个项目)时,我有两个微调器,它保存在数组中,它在微调器第二个中填充来自 Web 服务的数据。我希望当我再次选择第一个作为微调器标题的数据时,它应该清除微调器第二个中的所有值。我做了所有的把戏,但无能为力。建议我。
我的代码是:
if(spinner1== 0) {
spinner2List.clear();
ArrayAdapter<String> adapterEmpty = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item, spinner2List);
adapterEmpty.setDropDownViewResource(R.layout.spinner_layout);
// Apply the adapter to the spinner
spinner2.setAdapter(adapterEmpty);
}
谢谢。