http://blog.csdn.net/s13488941815/article/details/40649823;
First, click to enlarge
You can use the zoom animation that comes with Android, because to obscure other controls, you need the control at the top level, where you need to call the BringToFront method
@Override
public boolean OnTouch (View V, motionevent event) {
TODO auto-generated Method Stub
Switch (event.getaction ()) {
Case Motionevent.action_down:
V.bringtofront ();
Scaleanimation scal = new Scaleanimation (1.0f, 1.4f, 1.0f, 1.4f,
Animation.relative_to_self, 0.5f,
Animation.relative_to_self, 0.5f);
Scal.setduration (2000);
Scal.setfillafter (TRUE);
V.startanimation (scal);
Break
Default
Break
}
return false;
}
Layout aspects, you need to set
The following two properties
Android:clipchildren= "false"
Android:cliptopadding= "false"
These two properties allow the control to appear outside the scope of the control itself
Animated--android Picture Click to enlarge the animation and mask the next control