http://blog.****.net/s13488941815/article/details/40649823;
首先是点击放大
可以使用android自带的缩放动画,因为要遮盖其他控件,就需要控件处在最上层,这里需要调用bringTofront方法
@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;
}
布局方面,需要设置
下面两个属性
android:clipChildren="false"
android:clipToPadding="false"
这两个属性让控件可以显示在控件本身范围之外