0

使用 sharedpreferences 我保存了一个值。我需要将此值(持续时间)设置为 xml 文件。我如何解决?

<?xml version="1.0" encoding="utf-8"?>
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
   android:interpolator="@android:anim/accelerate_interpolator"
   android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="1500" />
4

1 回答 1

1

在您的动画代码上使用:

Animation alphaAnim = AnimationUtils.loadAnimation(this, R.anim.animate);
YOURVIEW.startAnimation( alphaAnim ); 
alphaAnim.setDuration(VALUE);
于 2012-12-29T19:55:53.627 回答