Libgdx表布局逻辑表未正确定位

时间:2018-10-21 16:22:56

标签: libgdx

我想将滚动窗格存储在表中。但是,图像的位置不符合预期。enter image description here

我已经浏览了this,但是对解决我的问题一无所知。

滚动窗格和scrolldetails表的蓝色框(逻辑表)不在正确的位置。请帮忙。

我的代码如下:

 scrollDetails = new Table();
    scrollDetails.setBackground(skin.getDrawable("gameSelectionBox1"));
    scrollDetails.setDebug(true);
    Button b = new Button(skin,"arithmetic");
    scrollDetails.add(b);
    scrollDetails.pack();

    sp = new ScrollPane(scrollDetails);
    sp.setOverscroll(false,true);
    sp.pack();
    sp.setDebug(true);

    table = new Table();

    table.setFillParent(true);
    table.bottom().padBottom(100).add(sp).align(Align.center);
    table.setDebug(true);
    table.pack();

//tried but has no effect
    //t.setPosition(0,100);
    //sp.setPosition(0,550);
    //tt.setPosition(0,100);

    stage.addActor(tt);

1 个答案:

答案 0 :(得分:0)

setFillParent()在ScrollPane中无法正常工作。删除该行,它将按预期工作。