I have one view animated with transle animation:
<translate
android:fromYDelta="0"
android:toYDelta="110%p"
android:duration="2000"
/>
public void translte(View v){
Animation animation= AnimationUtils.loadAnimation(context,R.anim.translate);
animation.setFillAfter(true);
v.startAnimation(animation);
}
And i want to detect if that view hits another view in its way.
How would you do it?