【发布时间】:2016-12-11 11:10:56
【问题描述】:
我试图让进度条在 3 秒内淡出,但它不起作用。
// Animate progress bar.
progressBar1 = (ProgressBar) findViewById(R.id.mainImageView1);
ObjectAnimator animato = ObjectAnimator.ofFloat(progressBar1, "alpha", 1.0f, 0.0f);
animato.setInterpolator(new DecelerateInterpolator());
animato.setDuration(3000);
animato.start();
布局(xml)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:background="#FFFFFF">
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:src="@drawable/ic_launcher"
android:layout_centerHorizontal="true"
android:layout_marginTop="168dp"
android:id="@+id/mainImageView1"/>
<ProgressBar
style="?android:attr/progressBarStyleHorizontal"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_alignParentBottom="true"
android:layout_marginBottom="48dp"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
android:indeterminate="true"
android:alpha="0.9"/>
</RelativeLayout>
最后,我所说的“工作”是指进度条不会消失。
【问题讨论】:
-
到目前为止,您的代码看起来还不错,请发布您的 ProgressBar xml ,并详细解释“它不起作用”的含义。
标签: java android animation android-animation mobile-application