如何在Codenameone中实现浮动操作按钮?

时间:2015-10-26 12:07:00

标签: codenameone floating-action-button

android中的

浮动操作按钮是不错的选择。我想在我的codenameone应用程序中使用它。我通过使用LayeredLayout尝试了它,有两个布局。我无法完美地实现它。按钮随着滚动一起移动。如何将按钮固定到屏幕的右下角,而不会影响背景图层的滚动效果。

这是我尝试的方式。

Form myForm = new Form();
myForm.setLayout(new LayeredLayout());
myForm.setTitle("Floating Action Button");

SpanLabel lbl = new SpanLabel("some long text");

Container conBottom = new Container();
conBottom.setLayout(new BoxLayout(BoxLayout.Y_AXIS));
conBottom.addComponent(lbl);

FlowLayout flow = new FlowLayout(Component.RIGHT);
flow.setValign(Component.BOTTOM);
Container conUpper = new Container(flow);
conUpper.addComponent(new Button("+"));
conUpper.setScrollable(false);

myForm.addComponent(conBottom);
myForm.addComponent(conUpper);

myForm.show();

这是类似于我想要实现的链接。 https://github.com/Clans/FloatingActionButton 请帮忙! 谢谢!

3 个答案:

答案 0 :(得分:5)

表单的内容窗格正在执行滚动,您需要底部容器来处理滚动。 试试这个:

    Form myForm = new Form();
    myForm.setLayout(new LayeredLayout());
    myForm.setTitle("Floating Action Button");

    SpanLabel lbl = new SpanLabel("some long text ");

    Container conBottom = new Container();
    conBottom.setScrollableY(true);
    conBottom.setLayout(new BoxLayout(BoxLayout.Y_AXIS));
    conBottom.addComponent(lbl);

    FlowLayout flow = new FlowLayout(Component.RIGHT);
    flow.setValign(Component.BOTTOM);
    Container conUpper = new Container(flow);
    conUpper.addComponent(new Button("+"));
    conUpper.setScrollable(false);

    myForm.addComponent(conBottom);
    myForm.addComponent(conUpper);
    myForm.setScrollable(false);
    myForm.show();

答案 1 :(得分:2)

实现此目的的另一种方法是将按钮放在LayeredPane表单上。这允许您自定义表单布局以处理您想要的任何内容。有了这个,您不必将表单设置为LayeredLayout。以下是可用于实现此目的的代码:

    FlowLayout fl = new FlowLayout(Component.RIGHT);
    fl.setValign(Component.BOTTOM);
    Container cont = new Container(fl);
    Button btn = new Button("+");
    //OR
    //Button btn = new Button(getImageFromTheme("plus_icon.png"));
    btn.addActionListener(null);
    btn.setUIID("ButtonFloat");
    cont.addComponent(btn);
    myForm.getLayeredPane().addComponent(cont);
    myForm.getLayeredPane().setLayout(new LayeredLayout());

    btn.addActionListener(new ActionListener() {

        @Override
        public void actionPerformed(ActionEvent evt) {
           //Handle your btn click here
        }
    });

答案 2 :(得分:1)

虽然其他答案仍然是100%正确,但现在有一个内置的浮动按钮组件:https://www.codenameone.com/blog/floating-button.html