Example usage for com.badlogic.gdx.scenes.scene2d.ui Widget setFillParent

List of usage examples for com.badlogic.gdx.scenes.scene2d.ui Widget setFillParent

Introduction

In this page you can find the example usage for com.badlogic.gdx.scenes.scene2d.ui Widget setFillParent.

Prototype

public void setFillParent(boolean fillParent) 

Source Link

Usage

From source file:com.agateau.ui.UiBuilder.java

License:Apache License

protected void applyWidgetProperties(Widget widget, XmlReader.Element element) {
    widget.setFillParent(element.getBooleanAttribute("fillParent", false));
}