AndroidViewAnimations
AndroidViewAnimations copied to clipboard
View add inflate(R.layout.loading, parent, true) animation work wrong
I use this code for add view to main activity
View add = G.inflater.inflate(R.layout.loading, parent, true);
contentLoading = add.findViewById(R.id.contentLoading);
YoYo.with(Techniques.RubberBand)
.onStart(animator->{contentLoading.setVisibility(View.VISIBLE);})
.duration(700)
.playOn(contentLoading);
But contentLoading animation is wrong and not work correct