super.onCreate(savedInstanceState);
final RegionView group = new RegionView(this);
final TextView text = new TextView(this);
text.setText(buildText());
group.addView(text);
setContentView(group);
ObjectAnimator animator = ObjectAnimator.ofFloat(group, "clipPosition", 0.0f, 1.0f);
animator.setDuration(3000);
animator.setRepeatCount(ValueAnimator.INFINITE);
animator.setRepeatMode(ValueAnimator.REVERSE);
animator.start();