libgdx ScrollPane - 不滚动?

问题描述 投票:0回答:5

我正在多人游戏中创建一个大厅,该游戏的表格中可能会显示任意数量的玩家。我有以下代码:

camera = new OrthographicCamera(WIDTH,HEIGHT);
    camera.position.set(WIDTH/2,HEIGHT/2, 0);
    camera.update();

    stage = new Stage();
    Gdx.input.setInputProcessor(stage);
    stage.setCamera(camera);
    stage.setViewport(WIDTH,HEIGHT,false);

    ScrollPaneStyle paneStyle = new ScrollPaneStyle();
    paneStyle.background = new TextureRegionDrawable(WizardsDuel.atlas.findRegion("cavebg"));
    paneStyle.vScrollKnob = new TextureRegionDrawable(WizardsDuel.atlas.findRegion("GUI/slidernob"));
    paneStyle.hScroll = paneStyle.hScrollKnob = paneStyle.vScroll = paneStyle.vScrollKnob;

    Table container = new Table();
    table = new Table();
    ScrollPane pane = new ScrollPane(table,paneStyle);
    container.add(pane).width(WIDTH).height(HEIGHT);
    container.row();
    container.setBounds(0,0,WIDTH,HEIGHT);
    stage.addActor(container);

    font = new BitmapFont();
    color = new Color(0,0,0,1);
    style = new TextButtonStyle();
    style.font = font;
    style.up = new TextureRegionDrawable(WizardsDuel.atlas.findRegion("GUI/guibg"));
    style.fontColor = color;

    handler = new ChangeHandler();
    ArrayList<User> users = FirebaseManager.lobbyUsers;
    for(int i = 0; i < users.size() || i < 100; i++){
        TextButton tmp = new TextButton("",style);
        tmp.scale(2);
        //tmp.setText(users.get(i).name);
        tmp.setText(i+ "   asdf");
        tmp.addListener(handler);
        table.add(tmp).width(WIDTH/4f);
        if(i%2 == 1 && i > 0)
            table.row();
    }

尽管表格明显延伸到屏幕底部(应该是滚动窗格的底部)下方,但没有滚动条,并且单击和拖动没有任何作用。

截图: enter image description here

java android libgdx scrollpane
5个回答
8
投票

也许你忘记在 render() 中让舞台动作,添加如下内容:

@Override
public void render(float delta) {
    Gdx.gl.glClearColor(0, 0, 0, 1);
    Gdx.gl.glClear(GL10.GL_COLOR_BUFFER_BIT);

    stage.act(Math.min(Gdx.graphics.getDeltaTime(), 1 / 30f));
    stage.draw();
}

8
投票

你实际上需要两件事。一个外容器和一个内容器。为此,您经常使用两个表。这是我如何使用scrollPane 的一个小例子。其实没有风格,但应该很清楚。

this.table = new Table();
this.container = new Table();
scroll = new ScrollPane(table);
container.add(scroll).width(500f).height(500f);
container.row();

表格是您添加应该可滚动的内容的表格。容器就是外箱。因此,您可以在滚动框上方添加标题。外箱(容器)确实需要尺寸。否则你将不会有任何滚动条之类的。而且你确实需要内表。

添加简单示例:

style = new LabelStyle(font, Color.WHITE);
label = new Label(null, style);
table.add(label);
table.row();
label.setAlignment(1); // align center

给它更多可以显示的行,你就会有一个滚动窗格。否则就没有滚动条之类的。


一体。我想你只是错过了外容器。添加它,它应该可以工作。不要忘记设置尺寸。


2
投票

我的问题是没有收到输入。我不应该在构造函数中设置输入处理器,因为前一个屏幕在“隐藏”时将处理器设置为 null,所以当我将该行移至 LobbyScreen 的 show 方法时,它发生在前一个屏幕隐藏之后,并且输入设置正确。


1
投票

初始化滚动窗格后,您应该首先调用它

    mScrollPane.layout();

0
投票

要滚动的元素必须先添加到舞台或组中,然后再传递到 ScrollPane

  1. 创建必要的演员并将其添加到舞台或组中

    val actor = Actor()
    [Stage/Group].addActor(actor)
    
  2. 创建一个 ScrollPane 并在其中放置一个角色

    val scrollPane = ScrollPane(actor)
    
  3. 设置角色和 ScrollPane 的位置和尺寸

    actor.setBounds(x,y,w,h) | scrollPane.setBounds(x,y,w,h)
    
© www.soinside.com 2019 - 2024. All rights reserved.