所以我刚刚开始在android studio中开发一个Android应用程序,但是我有点陷入困境,我已经在我的应用程序中创建了一些XML动画,其中一个有以下代码:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<alpha
android:fromAlpha="0.0"
android:toAlpha="1.0"
android:duration="1000"
android:startOffset="15000"
android:repeatMode="reverse"
android:repeatCount="infinite"
/>
</set>
这个XML动画(swipetext_animation_flash)正在TextView(SwipeText)上使用,应该在开始之前等待15秒,然后无限地淡入和淡出,但它没有这样做。
相反,它等待15秒,淡入屏幕然后等待超过1秒才淡出。我认为这是因为startOffset属性,但我无法将其删除,因为我不确定在其他方面我可以延迟动画。
这是相应java文件中的代码:
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.ImageView;
import android.widget.TextView;
public class Loading_Menu extends AppCompatActivity {
public Animation animation;
public ImageView Logo;
public TextView Heading, SubHeading, SwipeText;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_loading__menu);
Logo = (ImageView) findViewById(R.id.Logo);
animation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.logo_animation_in);
Logo.startAnimation(animation);
Heading = (TextView) findViewById(R.id.Heading);
animation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.introheader_animation_in);
Heading.startAnimation(animation);
SubHeading = (TextView) findViewById(R.id.SubHeading);
animation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.subheaderintro_animation_in);
SubHeading.startAnimation(animation);
SwipeText = (TextView) findViewById(R.id.SwipeText);
animation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.swipetext_animation_flash);
SwipeText.startAnimation(animation);
}
}
这个类运行我想要它的方式,但它只是让SwipeText动画运行我想要它的问题。
任何帮助都会非常感激。
答案 0 :(得分:1)
android:startOffset将应用于每个动画重复,每个动画重复延迟15秒。而不是使用android:startOffset,我们将在15秒后开始动画,之后动画将每1秒重复一次。
请尝试下面提到的代码。
public class AnimActivity extends AppCompatActivity {
private Animation mAnimation;
private ImageView mLogo;
private TextView mHeading;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_anim);
mAnimation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.anim);
mLogo = findViewById(R.id.logo);
mHeading = findViewById(R.id.heading);
startAnim();
}
private void startAnim() {
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
mLogo.startAnimation(mAnimation);
mHeading.startAnimation(mAnimation);
}
}, 15000);
}
}
anim.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<alpha
android:duration="1000"
android:fromAlpha="0.0"
android:repeatCount="infinite"
android:repeatMode="reverse"
android:toAlpha="1.0" />
</set>