嗨朋友我提供以下代码可以让任何人知道如何在给定的两个图像/对象之间找到碰撞检测。如果可能的话尽快帮助我。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
img1=(ImageView) findViewById(R.id.imgLeft);
img2=(ImageView) findViewById(R.id.imgRight);
tw=ObjectAnimator.ofFloat(img2,
"translationX", 20, -550f);
tw.setDuration(6000);
tw.addUpdateListener(new AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
img_one_CurrentX=(int)img2.getY();
}
});
tw.start();
tw_One=ObjectAnimator.ofFloat(img1,
"translationX",0, 550f);
tw_One.setDuration(6000);
tw_One.setTarget(img1);
tw_One.start();
tw_One.addUpdateListener(new AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
img_two_CurrentX=(int)img1.getY();
if(img_one_CurrentX==img_two_CurrentX ){
Toast.makeText(getApplicationContext(), "Collision", Toast.LENGTH_LONG).show();
}
}
});
}
先谢谢。
答案 0 :(得分:2)
嗨朋友们辛勤工作后终于得到了一个很好的解决方案。哪个与我完美配合,我也在分享我的代码。
tw_One.addUpdateListener(new AnimatorUpdateListener(){
@Override
public void onAnimationUpdate(ValueAnimator animation) {
int x1=(int)img1.getX();
int y1=(int)img1.getY();
int width1=img1.getWidth();
int height1=img1.getHeight();
int x2=(int)img2.getX();
int y2=(int)img2.getY();
int width2=img2.getWidth();
int height2=img2.getHeight();
int right1 = x1 + width1;
int right2 = x2 + width2;
int bottom1 = y1 + height1;
int bottom2 = y2 + height2;
if(RunningTest)
{
if (x2 >= x1 && x2 <= right1 && y2 >= y2 && y2 <= bottom1)
{
obj.end();
}
if (right2 >= x1 && right2 <= right1 && bottom2 >= y2 && bottom2 <= bottom1)
{
obj.end();
}
});
答案 1 :(得分:0)
很棒的解决方案! :)我搜索了几个小时! 但是在解决它的if条件中有一个简单的错误:
if (x2 >= x1 &&
x2 <= right1 &&
y2 >= y1 &&
y2 <= bottom1) {
// do something...
}
if (right" >= x1 &&
right2 <= right1 &&
bottom2 >= y1 &&
bottom2 <= bottom2) {
// do something...
}