0

我在让 libgdxs 滚动窗格控件正常工作时遇到问题。下面的代码显示了一个简单布局的控件设置,其中包含一个标签、一个滚动窗格内的项目列表和一个按钮。问题是我的滚动窗格除了 vScroll/vScrollKnob Ninepatch (那个白色的小方块)之外没有显示任何东西,它看起来像这样:

截图

        private void setupLayout()
{
    String[] listEntries = {"1","2","3","4","5"};
    ListStyle listStyle = new ListStyle();  
    NinePatch example = new NinePatch(new Texture(Gdx.files.internal("data/example.9.png")));       
    listStyle.selectedPatch = example;
    listStyle.font = new BitmapFont();
    mList = new List(listEntries,listStyle);

    ScrollPaneStyle paneStyle = new ScrollPaneStyle();
    paneStyle.vScroll = example;
    paneStyle.vScrollKnob = example;        
    mListScroll = new ScrollPane(mList,paneStyle);
    mListScroll.setScrollingDisabled(true, false);
    mListScroll.width = 500;
    mListScroll.height = 500;

    LabelStyle ls = new LabelStyle();
    ls.font = new BitmapFont();
    ls.fontColor = new Color(1.0f, 1.0f, 1.0f, 1.0f);
    mLabel = new Label("Label", ls);    

    TextButtonStyle buttonStyle = new TextButtonStyle();
    buttonStyle.font = new BitmapFont();
    mButton = new TextButton("Button",buttonStyle);

    Table table = new Table();
    table.add(mLabel);
    table.row();
    table.add(mButton);
    table.row();
    table.add(mListScroll);
    mStage.addActor(table);
}

如果我不使用滚动窗格并将列表直接添加到表中,它会按预期工作,如下所示:

    Table table = new Table();
    table.add(mLabel);
    table.row();
    table.add(mButton);
    table.row();
    table.add(mList);             //changed mListScroll(scrollpane class) to mList(List class)
    mStage.addActor(table);

截屏

但是当项目太多时,它会延伸到我的屏幕底部。我在这里做错了什么?我需要在滚动窗格上设置另一个参数吗?

4

1 回答 1

1

我相信您遇到的问题是您如何将内容添加到表格中。我建议使用以下代码而不是您的操作方式:

Table table = new Table();
table.add(mLabel);
table.row();
table.add(mButton);
table.row();

// Changing the table layout size itself.
table.add(mListScroll).size(500, 500);

mStage.addActor(table);

有关更详细的说明,请参阅TableLayout,此处的快速入门向您展示了更多如何使用表格来布置对象。

于 2013-03-14T20:51:48.570 回答