我的复选框似乎不是 instanceof CheckBox

my checkbox doesn't seem instanceof CheckBox

在写我的论文时,我在 LogCat 中收到一条警告,我认为它可能会影响我的代码。

我收到一个 JSON 和一些数据,我必须以编程方式制作一个带有复选框和单选按钮(在 RadioGroup 中)的布局。稍后我可以对这项调查进行投票,这是我在布局中使用 getChildAt() 时出现的问题

if(child instanceof CheckBox)

不起作用,我不明白为什么。

这是我的代码:

 ll = (LinearLayout) findViewById(R.id.llSurvey);  //OnCreate

    /*Creating CheckBox*/
            String votes = jObj.getString("votes");
            String label = jObj.getString("label");
            String usid = jObj.getString("USID");    
            if(uType.equals("multi")){
                CheckBox cb = new CheckBox(SingleSurvey.this);
                cb.setText(label + " (" + votes + ")");
                cb.setId(s+1000);
                ll.addView(cb);         
                Log.i("MULTI_TYPE", "usid: " + usid + " id: " + cb.getId());
            }
            s++;

    /*Voting*/

            for(int i = 0; i < ll.getChildCount(); i++){
                View child = ll.getChildAt(i);
                int p = child.getId();
                Log.i("CHILD ID", "id: " + p);

                if(child instanceof TextView){
                    continue;
                }

                else if(child instanceof CheckBox){
                    Log.i("INSTANCE OF CB", "checkbox");
                    CheckBox cb = (CheckBox) child;
                    if(cb.isChecked()){
                        int cbId = cb.getId();
                        usid = rb_usid[cbId];
                        Log.i("CHECKBOX", "usid: " + usid);
                    }
                }

                //some other stuff
            }

Checkbox class 是一个 TextView subclass,所以你的代码永远不会进入 else if 块,这就是警告是什么说.

    android.widget.TextView
       ↳android.widget.Button
           ↳android.widget.CompoundButton
               ↳android.widget.CheckBox