列出codenameone中的渲染器问题

时间:2016-01-11 11:20:09

标签: java list codenameone renderer

我使用了列表渲染器,一切正常。然后我按如下方式保留了最后一次提取的项目:渲染器中有3个按钮。 button1适用于所有,但button2和button3在某些工作,而在其他工作不起作用?为什么? 如果我从下面的代码中移除if (lastClickedButton != null),则会为NullPointerException提供相同的按钮,该按钮在之前的其他列表项中有效。

mycode的:

@Override
    protected boolean initListModelListEmergencyList(List cmp) {
        cmp.setModel(new com.codename1.ui.list.DefaultListModel(emergencyPoliceArray));
        cmp.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent evt) {
                for (int i = 0; i < emergencyPoliceArray.size(); i++) {
                    if (cmp.getSelectedItem() == emergencyPoliceArray.get(i)) {

                        lastClickedButton = ((GenericListCellRenderer) cmp.getRenderer()).extractLastClickedComponent();
                        if (lastClickedButton != null) {
                            System.out.println("Phn no: " + lastClickedButton.getText());
                    }
                }
            }
        }
    }
    );

return true;
    }

MyConnection的:

private void showEmergencyDetails() {
        JSONParser p = new JSONParser();
        Hashtable<String, Object> test;
        try {
            test = p.parse(new InputStreamReader(is));
            Vector emergencyVector = (Vector) test.get("root");
            emergencyPoliceArray = new ArrayList<Map<String, String>>();
            for (int j = 0; j < emergencyVector.size(); j++) {
                Hashtable hm = (Hashtable) emergencyVector.get(j);
                String title = (String) hm.get("title");
                String location = (String) hm.get("location");
                Vector phn = (Vector) hm.get("phone");
                for (int i = 0; i < phn.size(); i++) {
                    Hashtable hphn = (Hashtable) phn.get(i);
                    String phone1 = (String) hphn.get("phn1");
                    String phone2 = (String) hphn.get("phn2");
                    String phone3 = (String) hphn.get("phn3");
                    HashMap<String, String> mp = new HashMap<String, String>();
                    mp.put("Phn", phone1);
                    mp.put("Phone2", phone2);
                    mp.put("Phone3", phone3);
                    mp.put("NameHeading", "Name");
                    mp.put("PhnHeading", "Phn no.");
                    mp.put("LocationHeading", "Location");
                    mp.put("Title", title);
                    mp.put("Name", title);
                    mp.put("Location", location);
                    emergencyPoliceArray.add(mp);
                }
            }
        } catch (IOException ex) {
        }
        showForm("EmergencyListDetails", null);
    }

1 个答案:

答案 0 :(得分:0)

如果渲染器条目之间存在差异(例如,一个条目具有按钮而另一个条目没有),则可能会影响所有列表,而不仅仅是按钮可见的条目。

当您进行互动时,我们强烈建议避免列表。它最好用于此类用例,并且在这种常见情况下不会为容器提供任何性能优势。