如何通过为这些ImageView提供另一个ImageView的位置来更改它们的位置? (用慢动作交换它们)
blue = (ImageView) findViewById(R.id.imageB);
red = (ImageView) findViewById(R.id.imageR);
Green = (ImageView) findViewById(R.id.imageG);
int x = blue.getLeft();
int y = blue.getTop();
int x1 = red.getLeft();
int y1 = red.getTop();
int x2 = Green.getLeft();
int y2 = Green.getTop();
Green.setLeft(x);
Green.setTop(y);
blue.setLeft(x1);
blue.setTop(y1);
red.setLeft(x2);
red.setTop(y2);`