gpt4 book ai didi

android - 我可以预加载 Animation Drawable 吗?

转载 作者:行者123 更新时间:2023-12-05 07:52:33 24 4
gpt4 key购买 nike

我正在使用 Android 的 Animation Drawable 来显示动画。但是我希望它尽可能活泼,因为我希望它在触摸屏幕时显示。现在的方式太慢了。显示大约需要 500 毫秒。有什么方法可以预加载动画或其他替代方法吗?

代码如下:

public void setYes(){
ImageView prev_view = (ImageView) ref_container.getChildAt(ref_container.getChildCount()-2);
prev_view.setImageResource(R.drawable.accept);
acceptAnimation = (AnimationDrawable) prev_view.getDrawable();
acceptAnimation.start();
}

这里是包含动画帧的 drawable 文件夹中的 XML:

<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="true">
<item android:drawable="@drawable/accept01" android:duration="33" />
<item android:drawable="@drawable/accept02" android:duration="33" />
<item android:drawable="@drawable/accept03" android:duration="33" />
<item android:drawable="@drawable/accept04" android:duration="33" />
<item android:drawable="@drawable/accept05" android:duration="33" />
<item android:drawable="@drawable/accept06" android:duration="33" />
<item android:drawable="@drawable/accept07" android:duration="33" />
<item android:drawable="@drawable/accept08" android:duration="33" />
<item android:drawable="@drawable/accept09" android:duration="33" />
<item android:drawable="@drawable/accept10" android:duration="33" />
<item android:drawable="@drawable/accept11" android:duration="33" />
<item android:drawable="@drawable/accept12" android:duration="33" />
<item android:drawable="@drawable/accept13" android:duration="33" />
<item android:drawable="@drawable/accept14" android:duration="33" />
<item android:drawable="@drawable/accept15" android:duration="33" />
<item android:drawable="@drawable/accept16" android:duration="33" />
</animation-list>

当我检测到某种触摸模式时,我会调用此函数。我想我之前无法加载它,因为我在不同的 View 中使用它 ref_container.getChildCount()-2。你们有任何解决方案,建议加快速度吗?

最佳答案

是的,动画第一次显示时有延迟。解决方案是在 onCreate() 中分配图像以避免延迟。

这是代码

public class MainActivity extends AppCompatActivity {

@BindView(R.id.animated_view) AppCompatImageView animatedView;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.your_activity);
ButterKnife.bind(this);

// assign animation
animatedView.setBackgroundResource(R.drawable.your_xml_list_of_images);
}

@OnClick(R.id.yolo)
public void onClickYolo() {
animatedView.setVisibility(View.VISIBLE);
((AnimationDrawable) animatedView.getBackground()).start();
}

}

关于android - 我可以预加载 Animation Drawable 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33565208/

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