Android开场动画可以通过使用Android的动画框架来实现。以下是一个例子,展示如何在Android开场动画中淡入一个ImageView:
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/logo"
android:scaleType="centerCrop"
android:visibility="invisible" />
ImageView imageView = findViewById(R.id.imageView);
AlphaAnimation animation = new AlphaAnimation(0.0f, 1.0f);
animation.setDuration(1000); // 设置动画持续时间,单位为毫秒
@Override
public void onWindowFocusChanged(boolean hasFocus) {
super.onWindowFocusChanged(hasFocus);
if (hasFocus) {
imageView.setVisibility(View.VISIBLE);
imageView.startAnimation(animation);
}
}
这样,当Activity获得焦点时,ImageView会以淡入的效果显示出来。你可以根据需要调整动画的属性和效果,例如缩放、旋转等。请注意,这只是一个简单的开场动画示例,你可以根据自己的需求进行修改和扩展。