gpt4 book ai didi

android - onNothingSelected 方法什么时候实现?

转载 作者:太空狗 更新时间:2023-10-29 14:02:50 27 4
gpt4 key购买 nike

任何人都可以通过示例向我解释 Spinner 的 onNothingSelected() 的实现

public class SpinnerActivity extends Activity implements OnItemSelectedListener {
...

public void onItemSelected(AdapterView<?> parent, View view,
int pos, long id) {
Toast.makeText(this,"Selected Item is -"+ (TextView)view.getText().toString(),Toast.LENGTH_SHORT);
}

public void onNothingSelected(AdapterView<?> parent) {
// Another interface callback
Toast.makeText(this,"nothing is selected",Toast.LENGTH_SHORT);
}
}

最佳答案

onNothingSelected is a Callback method to be invoked when the selection disappears from this view.例如,当触摸被激活或适配器变空时,选择可能会消失。我认为它几乎回答了你的问题。因此,如果您的微调器由于选择项目以外的其他原因而消失,则将调用 onNothingSelected。所以正如它的名字所说,它需要找出什么时候没有被选中

关于android - onNothingSelected 方法什么时候实现?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34447906/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com