tested in the simulator with the below code, pullToRefresh runnable is not 
getting called
        Form hi = new Form("Hi World");
        hi.setLayout(new BorderLayout());
         Tabs t = new Tabs();
    t.addTab("Test1", new com.codename1.ui.Label("Test1"));
    t.addTab("Test2", new com.codename1.ui.Label("Test2"));
    t.setScrollableY(true);
    t.addPullToRefresh(new Runnable() {
@Override
public void run() {
System.out.println("Tab Refresh");
}
    });

    hi.add(BorderLayout.CENTER, t);
hi.show();


I dont necessarily want the tab to be pull to refresh, but only the content 
of tab "Test1" which is actually a container.

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/2dd5c516-d183-4115-a59f-bfa480c75eab%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to