android-我的微调器未调用OnItemSelectedListener()

嗨,我有一个微调器,我已经使用可见性=隐藏属性.我使用spinner.performclick()调用微调器列表,除了在微调器列表中选择一个项目时,永远不会调用我的onselect侦听器外,此方法工作正常.请帮忙:)

唯一引发的警告警告是“窗口已经聚焦,而忽略了聚焦增益”

        catagorySpinner.setonItemSelectedListener(new OnItemSelectedListener() {
        @Override
        public void onItemSelected(AdapterView<?> parentView, View selectedItemView, int position, long id) {
            CashDB cdb = new CashDB(getBaseContext()); 
            cdb.open();
            Cursor c = cdb.FetchCatagory(id);
            startManagingCursor(c);
            c.movetoFirst();
            String newCatagoryName = c.getString(c.getColumnIndexOrThrow(CashDB.CATAGORY_NAME));
            c.close();
            areYouSureDialog("Are You Sure?", "Are you sure you want to delete the catagory " +'"' 
                    + catagoryName + '"'+ " and move all of the transactions to " +'"' 
                    + newCatagoryName + '"' + " ?",
                    catagoryIcon, catagoryName,newCatagoryName, DELETE_CATAGORY_MOVE, catagoryId);
        }

        @Override
        public void onnothingSelected(AdapterView<?> arg0) {
            // Todo Auto-generated method stub
        }
        });

解决方法:

将微调框的可见性保留为INVISIBLE,但将android:layout_width =“ 0dp”和android:layout_height =“ 0dp”设置为

这样,微调器实际上不会出现在UI中,直到您调用performClick(),然后它出现,用户做出选择,微调器折叠回0x0 …并得到onItemSelected事件.

相关文章

Android性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...