/**
* 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);
}