0
我有一個網絡任務在AsyncTask中定義,需要大約2-3秒才能完成。動畫導致AsyncTask HttpClient任務超級慢
當我添加下面的動畫代碼:
<?xml version="1.0" encoding="utf-8"?>
<rotate
xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="0"
android:toDegrees="360"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="infinite"
android:duration="60"
android:interpolator="@android:anim/linear_interpolator" />
,然後在我的活動執行,如下所示:
progressImageView = (ImageView) getWindow().findViewById(
R.id.progressImageView);
progressAnimation = AnimationUtils.loadAnimation(this, R.anim.progress);
progressImageView.startAnimation(progressAnimation);
網絡通話大約需要12-13秒才能完成。我在這裏做了一件令人難以置信的錯誤嗎?
這似乎是這個問題。謝謝。 – PolandSpring 2012-02-02 11:35:17