Examples of RoundRectBackground


Examples of tripleplay.ui.bgs.RoundRectBackground

    /**
     * Creates a round rect background with the specified color and corner radius.
     */
    public static Background roundRect (int bgColor, float cornerRadius) {
        return new RoundRectBackground(bgColor, cornerRadius);
    }
View Full Code Here

Examples of tripleplay.ui.bgs.RoundRectBackground

    /**
     * Creates a round rect background with the specified colors, border width and corner radius.
     */
    public static Background roundRect (int bgColor, float cornerRadius,
                                        int borderColor, float borderWidth) {
        return new RoundRectBackground(bgColor, cornerRadius, borderColor, borderWidth);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.