com.badlogic.gdx.scenes.scene2d.ui.Table.row()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(7.0k)|赞(0)|评价(0)|浏览(334)

本文整理了Java中com.badlogic.gdx.scenes.scene2d.ui.Table.row()方法的一些代码示例,展示了Table.row()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Table.row()方法的具体详情如下:
包路径:com.badlogic.gdx.scenes.scene2d.ui.Table
类名称:Table
方法名:row

Table.row介绍

[英]Indicates that subsequent cells should be added to a new row and returns the cell values that will be used as the defaults for all cells in the new row.
[中]指示后续单元格应添加到新行,并返回将用作新行中所有单元格默认值的单元格值。

代码示例

代码示例来源:origin: libgdx/libgdx

  1. public void row () {
  2. table.row();
  3. }

代码示例来源:origin: libgdx/libgdx

  1. public void row () {
  2. table.row();
  3. }

代码示例来源:origin: libgdx/libgdx

  1. public void create () {
  2. stage = new Stage();
  3. Gdx.input.setInputProcessor(stage);
  4. root = new Table();
  5. root.setFillParent(true);
  6. stage.addActor(root);
  7. skin = new Skin(Gdx.files.internal("data/uiskin.json"));
  8. Table labels = new Table();
  9. root.add(new ScrollPane(labels, skin)).expand().fill();
  10. root.row();
  11. root.add(drawnLabel = new Label("", skin));
  12. for (int i = 0; i < count; i++) {
  13. labels.add(new Label("Label: " + i, skin) {
  14. public void draw (Batch batch, float parentAlpha) {
  15. super.draw(batch, parentAlpha);
  16. drawn++;
  17. }
  18. });
  19. labels.row();
  20. }
  21. }

代码示例来源:origin: libgdx/libgdx

  1. mytable.debug();
  2. mytable.add(new Image(new Texture("data/group-debug.png")));
  3. mytable.row();
  4. mytable.add(new Image(new Texture("data/group-debug.png")));
  5. mytable.row();
  6. mytable.add(pane2).size(100);
  7. mytable.row();
  8. mytable.add(new Image(new Texture("data/group-debug.png")));
  9. mytable.row();
  10. mytable.add(new Image(new Texture("data/group-debug.png")));

代码示例来源:origin: libgdx/libgdx

  1. table.row();
  2. TextButton button = new TextButton(instancer.instance().getClass().getName(), skin);
  3. button.addListener(new ClickListener() {
  4. table.add(button).expandX().fillX();
  5. container.row();
  6. container.add(new Label("Click on a test to start it, press ESC to close it.", new LabelStyle(font, Color.WHITE))).pad(5, 5,
  7. 5, 5);

代码示例来源:origin: libgdx/libgdx

  1. @Override
  2. public void create () {
  3. batch = new SpriteBatch();
  4. skin = new Skin(Gdx.files.internal("data/uiskin.json"));
  5. stage = new Stage();
  6. Gdx.input.setInputProcessor(stage);
  7. Table table = new Table();
  8. stage.addActor(table);
  9. table.setPosition(200, 65);
  10. Label label1 = new Label("This text is scaled 2x.", skin);
  11. label1.setFontScale(2);
  12. Label label2 = new Label(
  13. "This text is scaled. This text is scaled. This text is scaled. This text is scaled. This text is scaled. ", skin);
  14. label2.setWrap(true);
  15. label2.setFontScale(0.75f, 0.75f);
  16. table.debug();
  17. table.add(label1);
  18. table.row();
  19. table.add(label2).fill();
  20. table.pack();
  21. }

代码示例来源:origin: libgdx/libgdx

  1. private void setupUi () {
  2. // setup a tiny ui with a console and a clear button.
  3. skin = new Skin(Gdx.files.internal("data/uiskin.json"));
  4. stage = new Stage();
  5. ui = new Table();
  6. ui.setSize(Gdx.graphics.getWidth(), Gdx.graphics.getHeight());
  7. console = new List(skin);
  8. scrollPane = new ScrollPane(console);
  9. scrollPane.setScrollbarsOnTop(true);
  10. TextButton clear = new TextButton("Clear", skin);
  11. ui.add(scrollPane).expand(true, true).fill();
  12. ui.row();
  13. ui.add(clear).expand(true, false).fill();
  14. stage.addActor(ui);
  15. clear.addListener(new ClickListener() {
  16. @Override
  17. public void clicked (InputEvent event, float x, float y) {
  18. clear();
  19. }
  20. });
  21. Gdx.input.setInputProcessor(stage);
  22. }

代码示例来源:origin: libgdx/libgdx

  1. table.add(play);
  2. table.add(stop).left();
  3. table.row();
  4. table.add(new Label("Pitch", skin));
  5. table.add(pitch);
  6. table.add(pitchValue);
  7. table.row();
  8. table.add(new Label("Volume", skin));
  9. table.add(volume);
  10. table.add(volumeValue);
  11. table.row();
  12. table.add(new Label("Pan", skin));
  13. table.add(pan);

代码示例来源:origin: libgdx/libgdx

  1. scrollPane.setFlickScroll(false);
  2. container.row().height(350);
  3. container.add(scrollPane);

代码示例来源:origin: libgdx/libgdx

  1. table.row();
  2. table.add(new Label(i + "uno", skin)).expandX().fillX();
  3. container.row().space(10).padBottom(10);
  4. container.add(flickButton).right().expandX();
  5. container.add(onTopButton);

代码示例来源:origin: libgdx/libgdx

  1. root.add(new Container(label("bottom")).bottom());
  2. root.add(new Container(label("left")).left());
  3. root.row();
  4. root.add(new Container(label("fill")).fill());
  5. root.add(new Container(label("fillX")).fillX());
  6. root.add(new Container(label("fill 75%")).fill(0.75f, 0.75f));
  7. root.add(new Container(label("fill 75% br")).fill(0.75f, 0.75f).bottom().right());
  8. root.row();
  9. root.add(new Container(label("padTop 5\ntop")).padTop(5).top());
  10. root.add(new Container(label("padBottom 5\nbottom")).padBottom(5).bottom());
  11. root.add(new Container(label("pad 10 fill")).pad(10).fill());
  12. root.add(new Container(label("pad 10 tl")).pad(10).top().left());
  13. root.row();
  14. root.add(new Container(label("bg")).background(logo));
  15. root.add(new Container(label("bg height 50")).background(logo).height(50));

代码示例来源:origin: libgdx/libgdx

  1. root.add(new Label("meow meow meow meow meow meow meow meow meow meow meow meow", skin)).colspan(3).expandX();
  2. root.add(new TextButton("Text Button", skin));
  3. root.row();
  4. root.add(new TextButton("Text Button", skin));
  5. root.add(new TextButton("Toggle Button", skin.get("toggle", TextButtonStyle.class)));

代码示例来源:origin: dingjibang/GDX-RPG

  1. public TypedGdxQuery<T> row(){
  2. if(t instanceof Table)
  3. ((Table) t).row();
  4. return this;
  5. }

代码示例来源:origin: libgdx/libgdx

  1. t.row();
  2. t.add(myLabel);

代码示例来源:origin: narfman0/GDXWorld

  1. private void populateVertexTable(){
  2. for(Vector2 vertex : nodes){
  3. vertexTables.add(new VertexTable(vertex, skin, this));
  4. vertexTables.row();
  5. }
  6. }

代码示例来源:origin: narfman0/GDXWorld

  1. @Override public void clicked(InputEvent event, float x, float y) {
  2. deleteButton.remove();
  3. table.remove();
  4. lightTables.remove(table).remove();
  5. lightTable.reset();
  6. for(Entry<AbstractLightTable, Button> entry : lightTables.entrySet()){
  7. lightTable.add(entry.getKey());
  8. lightTable.add(entry.getValue());
  9. lightTable.row();
  10. }
  11. }
  12. });

代码示例来源:origin: kotcrab/vis-ui

  1. @Override
  2. protected void fillTable (final Table table) {
  3. int widgetsCounter = 0;
  4. for (final CellWidget<? extends Actor> widget : getWidgets()) {
  5. widget.buildCell(table, getDefaultWidgetPadding());
  6. if (++widgetsCounter == rowSize) {
  7. widgetsCounter -= rowSize;
  8. table.row();
  9. }
  10. }
  11. }
  12. }

代码示例来源:origin: crashinvaders/gdx-texture-packer-gui

  1. @LmlAfter void initView() {
  2. moduleViewHolders.clear();
  3. Array<ExtensionModuleController> moduleControllers = moduleManager.getModuleControllers();
  4. for (ExtensionModuleController moduleController : moduleControllers) {
  5. ModuleViewHolder viewHolder = new ModuleViewHolder(moduleController);
  6. moduleViewHolders.put(moduleController.getModuleId(), viewHolder);
  7. tableModules.row();
  8. tableModules.add(viewHolder.root);
  9. }
  10. }

代码示例来源:origin: crashinvaders/gdx-texture-packer-gui

  1. public void setupButtons (ButtonBar buttonBar) {
  2. buttonBar.setIgnoreSpacing(true);
  3. getContentTable().row().spaceTop(8);
  4. getContentTable().add(buttonBar.createTable());
  5. pack();
  6. centerWindow();
  7. }

代码示例来源:origin: lycying/c2d-engine

  1. void addNewHandle(Table table, String region, String txt, ClickListener l) {
  2. TextureAtlas atlas = Engine.resource("TA");
  3. DefaultLabel label = DefaultLabel.getDefaultLabel(txt + " ");
  4. label.addListener(l);
  5. table.add(new Image(new TextureRegionDrawable(atlas.findRegion(region)), Scaling.none)).height(30).spaceRight(10);
  6. table.add(label).right().spaceRight(10);
  7. table.row();
  8. }
  9. }

相关文章