如何在代号为一的滑动选项卡中添加pull to fresh选项?

时间:2017-04-07 07:38:42

标签: codenameone

我想在滑动选项卡中添加pull to fresh选项但是它不起作用我也已经使用容器并尝试添加它但它似乎相同。

这是我的代码

displayContainer   = new Container();
getDisplay(displayContainer);
    for(i=0;i<totalRadioButton;i++){
        tabs.hideTabs();
        displayContainer   = new Container(new BoxLayout(BoxLayout.Y_AXIS));
        getDisplay(displayContainer);
        tabs.addTab("",displayContainer);
        //tabs.add(flowContainer);
        tabs.setName("t"+i);
        tabs.setTabUIID(tabs.getName());
        radioButton =new RadioButton();
        radioButton.setName("rbt"+i);
        radioTypeContainer.add(radioButton);
        finalRadioList.add(radioButton.getName());
        tabsListName.add(tabs.getTabUIID());
        radioList.add(radioButton);
        tabIndex0="rbt0";
        if(radioList.get(i).getName().equals(tabIndex0)){
            radioList.get(i).setSelected(true); 
        }
        buttonGroup.addAll(radioButton);


    }

tabs.getContentPane().addPullToRefresh(new Runnable() {
            @Override
            public void run() {
              getMyList();

            }
        });

先谢谢

1 个答案:

答案 0 :(得分:0)

正如Chen所说,你需要将它添加到displayContainer,但请注意它需要Y可滚动才能工作。我建议将整个Tabs容器放在边框布局的中心,这样它的父级就可以滚动了。