Android 中的动态图库内容

发布于 2024-10-07 13:25:49 字数 178 浏览 3 评论 0原文

在我的画廊中,我想展示很多照片,一次一张,但所有照片放在一起的尺寸太大,无法放入内存。因此,当用户在图库中移动时,我必须加载/卸载图片。图库中的每个视图都包含一个RelativeLayout,其中包含图片和描述文本。有没有一种方法可以重写,每次图库视图更改时都会调用该方法?

相应适配器的getView不合适,有时不会被调用。

In my gallery i want to show lots of pictures, one at a time, but the size of all the pictures taken together, is too large to fit into memory. So I will have to load/unload pictures as the user moves through the gallery. Each view in the gallery consists of a RelativeLayout, containing the picture and a describing text. Is there a method I could override that gets called each time the gallery view changes?

getView of the corresponding adapter is not suitable, it sometimes does not get called.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

憧憬巴黎街头的黎明 2024-10-14 13:25:49

onItemSelected() 怎么样?

this.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {

    //@Override
    public void onItemSelected(AdapterView<?> arg0, View arg1,int arg2, long arg3) {    

        if(lastSelectedView!=null) {
            ((ImageView)lastSelectedView).setAlpha(100);
        }
        ((ImageView)arg1).setAlpha(255);

        lastSelectedView=arg1;
    }
};

How about onItemSelected()?

this.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {

    //@Override
    public void onItemSelected(AdapterView<?> arg0, View arg1,int arg2, long arg3) {    

        if(lastSelectedView!=null) {
            ((ImageView)lastSelectedView).setAlpha(100);
        }
        ((ImageView)arg1).setAlpha(255);

        lastSelectedView=arg1;
    }
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文