我正在尝试在“图像”视图上启动闪亮的动画效果。
问题是动画没有显示在屏幕上。
仅当我在按钮侦听器中启动它时,它才起作用。
这是我的shine_effect.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:centerColor="#beffffff"
android:endColor="#00ffffff"
android:startColor="#00ffffff" />
</shape>
这是我的布局xml文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/gradient"
android:orientation="vertical">
<RelativeLayout
android:id="@+id/relativeLayout"
android:layout_width="170dp"
android:layout_height="170dp"
android:layout_centerInParent="true">
<ImageView
android:id="@+id/img"
android:layout_width="170dp"
android:layout_height="170dp"
android:contentDescription="@string/desc"
android:src="@drawable/logo" />
<ImageView
android:id="@+id/shine"
android:layout_width="50dp"
android:layout_height="170dp"
android:layout_marginStart="-50dp"
android:contentDescription="@string/desc"
android:src="@drawable/shine_effect" />
</RelativeLayout>
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/relativeLayout"
android:layout_centerHorizontal="true"
android:layout_marginTop="43dp"
android:text="@string/pending"
android:textColor="@android:color/white" />
</RelativeLayout>
和我的活动onCreate方法:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_chat_pending);
img=(ImageView)findViewById(R.id.img) ;
shine=(ImageView)findViewById(R.id.shine) ;
shine_anim=new TranslateAnimation(0, img.getWidth()+ shine.getWidth(),0,
0);
shine_anim.setDuration(550);
shine_anim.setFillAfter(true);
shine_anim.setRepeatMode(Animation.RESTART);
shine_anim.setInterpolator(new AccelerateDecelerateInterpolator());
shine_anim.setRepeatMode(Animation.INFINITE);
shine.startAnimation(shine_anim);
}
最佳答案
这是因为ImageView
尚未布局,因此宽度为0。您可以为其设置布局周期,然后开始动画。
img.getViewTreeObserver().addOnGlobalLayoutListener(
new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
img.getViewTreeObserver().removeOnGlobalLayoutListener(this);
// Create and start animation
}
});
另外,如果您的图片宽度始终是静态的,则可以进行例如将170dp转换为px,并在创建
TranslateAnimation
而不是使用getWidth()
视图方法时使用该值。关于android - Android -TranslateAnimation无法正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49049799/