gpt4 book ai didi

android - 从左向右移动图像然后旋转动画

转载 作者:太空狗 更新时间:2023-10-29 16:41:19 25 4
gpt4 key购买 nike

我正在举一个例子,将图像从左向右移动然后自行旋转。我试过使用 AnimationSet 但图像旋转不正确。它在一个循环中移动,而不是它自己。如何解决这个问题?

我想要什么 enter image description here主要 Activity

@Override
protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
AnimationSet set = new AnimationSet(true);
set.setFillAfter(true);
img_animation = (ImageView) findViewById(R.id.imgBanner);
Animation rotation = AnimationUtils.loadAnimation(this, R.anim.rotation);
rotation.setStartOffset(2000);
rotation.setDuration(2000);
TranslateAnimation moveLefttoRight = new TranslateAnimation(0, 200, 0, 0);
moveLefttoRight.setStartOffset(1000);
moveLefttoRight.setDuration(1000);
set.addAnimation(moveLefttoRight);
set.addAnimation(rotation);
img_animation.startAnimation(set);
}

旋转.xml

<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="1000"
android:fromDegrees="0"
android:interpolator="@android:anim/linear_interpolator"
android:pivotX="50%"
android:pivotY="50%"
android:toDegrees="90" />

activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >

<ImageView
android:id="@+id/imgBanner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/banner" />

</RelativeLayout>

任何建议对我都有帮助

最佳答案

尝试使用这个:

RotateAnimation anim = new RotateAnimation(0f, 360f,
Animation.RELATIVE_TO_SELF, 0.5f,
Animation.RELATIVE_TO_SELF, 0.5f);

所以它会相对于自己旋转。希望这会有所帮助。

编辑:

image.clearAnimation();
RotateAnimation anim = new RotateAnimation(30, 360, image.getWidth()/2, image.getHeight()/2);
anim.setFillAfter(true);
anim.setRepeatCount(0);
anim.setDuration(10000);
image.startAnimation(anim);

我在演示应用程序中测试了这个。它工作得很好。希望这对你有帮助:)

关于android - 从左向右移动图像然后旋转动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17345041/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com