gpt4 book ai didi

Android -TranslateAnimation 不工作

转载 作者:行者123 更新时间:2023-11-29 02:32:10 26 4
gpt4 key购买 nike

我正在尝试在 ImageView 上启动 Shiny 效果动画。问题是动画没有显示在屏幕上。

只有当我在按钮监听器中启动它时它才有效。

这是我的 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>

和我的 Activity 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 时使用该值,而不是使用 View 的 getWidth() 方法。

关于Android -TranslateAnimation 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49049799/

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