我目前有一个ImageView,我正在应用缩放动画。此视图位于相对布局中,其layout_height和layout_width设置为wrap_content。问题是当动画开始时它会使imageview比其父布局更大,然后图像被切断。反正有吗?
以下是一份工作样本:
xml文件 -
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dip"
android:layout_gravity="center_horizontal">
<ImageView
android:id="@+id/imgO"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/circle"/>
</RelativeLayout>
</LinearLayout>
java文件 -
ImageView imgO;
ScaleAnimation makeSmaller;
ScaleAnimation makeBigger;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.titlescreen);
//Animation
imgO = (ImageView)findViewById(R.id.imgO);
makeSmaller = new ScaleAnimation((float)10.0, (float)1.0, (float)10.0, (float)1.0, Animation.RELATIVE_TO_SELF, (float)0.5, Animation.RELATIVE_TO_SELF, (float)0.5);
makeSmaller.setAnimationListener(new MyAnimationListener());
makeSmaller.setFillAfter(true);
makeSmaller.setDuration(500);
makeBigger = new ScaleAnimation((float)1.0, (float)10.0, (float)1.0, (float)10.0, Animation.RELATIVE_TO_SELF, (float)0.5, Animation.RELATIVE_TO_SELF, (float)0.5);
makeBigger.setAnimationListener(new MyAnimationListener());
makeBigger.setFillAfter(true);
makeBigger.setDuration(750);
imgO.startAnimation(makeBigger);
}
class MyAnimationListener implements AnimationListener {
public void onAnimationEnd(Animation animation) {
ScaleAnimation sa = (ScaleAnimation)animation;
if (sa.equals(makeSmaller))
imgO.startAnimation(makeBigger);
else
imgO.startAnimation(makeSmaller);
}
public void onAnimationRepeat(Animation animation) {
}
public void onAnimationStart(Animation animation) {
}
}
感谢。
答案 0 :(得分:70)
对你来说有点晚了,但对于每个寻找答案的人:你可以在封闭的ViewGroups上调用setClipChildren(false)
(例如RelativeLayout
或LinearLayout
)。
答案 1 :(得分:1)
我正在将翻译和alpha动画应用于子视图,而父级正在剪切子级。
对我来说,@ HerrHo的答案本身不起作用,但是一旦我添加
android:clipChildren="false"
android:clipToPadding="false"
一起开始工作!
答案 2 :(得分:0)
我通过将所有内容填充为父级然后水平和垂直居中对齐来修复此问题。