ViewParams.of(someView)
.width(widthPx)
.heightRes(R.dimen.height)
.margins(0)
.marginLeftRes(R.dimen.horizontal_margin)
.marginRightRes(R.dimen.horizontal_margin)
.apply();
ViewParams.of(findViewById(R.id.container))
.animate()
.widthBy(value)
.heightBy(value)
.repeatInfinitely()
.repeatModeReverse()
.setDuration(DURATION_MS)
.start();