我正在使用pull来刷新,这种方式最常用,但是它通常会在没有刷新操作的情况下走得太远。
https://www.youtube.com/watch?v=LXm_uEBOygs
cnt.addPullToRefresh(new Runnable() {
@Override
public void run() {
loadComponent();
}
});
答案 0 :(得分:1)
我能够在这个独立测试用例的模拟器上重现这个:
Form hi = new Form("Pull");
hi.getContentPane().addPullToRefresh(() -> {
hi.add(new Button("Pulled!"));
hi.revalidate();
});
hi.show();
我猜这是一个需要filing的错误。