我有一个相对布局(让我们称之为A),在滚动视图中,在相对布局内(我们将调用此布局B)
我要做的是从A中删除一个孩子,将其插入B并将其与父母顶部对齐(在操作栏下方)。
我一直在努力为这张幻灯片添加动画效果,然后在没有任何运气的情况下回到原来的位置。
知道如何才能执行此动画?
答案 0 :(得分:1)
一个非常迟到的回复,但这是我如何管理这个:
center_to_top_center.xml (位于res / anim /)
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="1000"
android:fillAfter="true"
android:fromXDelta="0%p"
android:fromYDelta="00%p"
android:toXDelta="00%p"
android:toYDelta="-40%p" />
</set>
<强> HomeActivity.java 强>
public class HomeActivity extends FragmentActivity {
@InjectView(R.id.imageView2)
ImageView mImageView;
@Override
protected void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.activity_home, false);
beginLogoAnimation();
}
private void beginLogoAnimation(){
Animation translateAnim= AnimationUtils.loadAnimation(getApplicationContext(),
R.anim.center_to_top_center);
translateAnim.setFillAfter(true);
translateAnim.setFillEnabled(true);
translateAnim.setFillBefore(false);
translateAnim.setAnimationListener(new Animation.AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {
}
@Override
public void onAnimationEnd(Animation animation) {
}
@Override
public void onAnimationRepeat(Animation animation) {
}
});
mImageView.startAnimation(translateAnim);
}
}
<强> activity_home.xml 强>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView2"
android:layout_centerInParent="true"
android:layout_marginTop="15dp"
android:layout_centerHorizontal="true"
android:src="@drawable/logo"
/>
答案 1 :(得分:0)
由于您要设置布局更改动画,请尝试将其添加到布局块:
int addXY(int x, int y)
{
return x + y;
}
__declspec(dllexport) addXYWrap_t addXYWrap = (addXYWrap_t)addXY;
来源:http://developer.android.com/guide/topics/graphics/prop-animation.html#layout