Android:在单独的线程(背景)中将图像设置为ImageButton

时间:2015-02-26 03:03:39

标签: java android multithreading background intentservice

我正在使用ViewPager及其横向屏幕滑动功能在每个包含图像的片段之间滑动。

但是,由于我当前正在UI线程上加载这些图像,所以页面加载速度非常慢。以下是我目前的工作方式:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_pictures);

    imageButton.setImageResource(R.drawable.picture_one);
}

我想在背景/单独的帖子上将我的图片(R.drawable.picture_one)加载到ImageButton。

我查看了Cursor,但它似乎只用于数据库查询。

我该怎么做?谢谢!

0 个答案:

没有答案