Spinner colorSpinner = new Spinner(this);colorFrIEndsspinnerAdapter adapter = new colorFrIEndsspinnerAdapter(getApplicationContext(),Liste,R.layout.color_dropdown,new String[] { "Icon" },new int[] { R.ID.colorDropdown });//adapter.setDropDownVIEwResource(androID.R.layout.simple_spinner_dropdown_item);colorSpinner.setAdapter(adapter);colorSpinner.performClick();colorSpinner.setonItemSelectedListener(new OnItemSelectedListener() { @OverrIDe public voID onItemSelected(AdapterVIEw<?> arg0,VIEw arg1,int position,long ID) { editcolorXml(position); } public voID onnothingSelected(AdapterVIEw<?> arg0) { // Todo auto-generated method stub } });
感谢您的帮助,对不起我的英语.
解决方法 ItemSelectedListner的示例,无需覆盖注释.spinner.setonItemSelectedListener(new OnItemSelectedListener() { public voID onItemSelected(AdapterVIEw<?> arg0,int arg2,long arg3) { // Todo auto-generated method stub } public voID onnothingSelected(AdapterVIEw<?> arg0) { // Todo auto-generated method stub } });
在colorSpinner.performClick()之前设置监听器.在此代码中,将在未设置侦听器的时刻单击微调器.
总结以上是内存溢出为你收集整理的Android微调器没有触发onItemSelected全部内容,希望文章能够帮你解决Android微调器没有触发onItemSelected所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)