use thread pool executor for downloading feed icons
This commit is contained in:
parent
eb217dc85d
commit
a60225626d
@ -25,6 +25,7 @@ import android.graphics.Bitmap;
|
||||
import android.graphics.BitmapFactory;
|
||||
import android.net.http.AndroidHttpClient;
|
||||
import android.os.AsyncTask;
|
||||
import android.os.Build;
|
||||
import android.os.Bundle;
|
||||
import android.os.Environment;
|
||||
import android.preference.PreferenceManager;
|
||||
@ -345,6 +346,10 @@ public class FeedsFragment extends Fragment implements OnItemClickListener, OnSh
|
||||
}
|
||||
|
||||
GetIconsTask git = new GetIconsTask(baseUrl);
|
||||
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB)
|
||||
git.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, m_feeds);
|
||||
else
|
||||
git.execute(m_feeds);
|
||||
|
||||
m_feedIconsChecked = true;
|
||||
|
Loading…
Reference in New Issue
Block a user