如何根据元素名称从自定义适配器中检索元素的位置..我有一个cityAdapter,其中包含键值格式的城市名称和ID。我试图通过以下代码检索位置
SpinnerModel model=new SpinnerModel();
model.setKey(""+currentLocation);
model.setValue(currentLocationValue);
int position = cityAdapter.getPosition(model);
位置返回-1。 任何人都可以指导我如何解决这个问题。
答案 0 :(得分:0)
点击列表,您可以轻松获取特定项目的位置, 是否有任何特殊原因,以便您不希望在列表单击上获得项目位置?