Android:图库视图,我们可以命名图像吗?

发布于 2024-10-30 07:38:37 字数 104 浏览 1 评论 0原文

当我们在Android中的图库视图中显示图像时,有什么方法可以为图库项目设置标题或设置图像名称吗?

从技术上讲,我想为每个画廊项目命名。这可能吗?

谢谢, 萨那。

When we display the images in a Gallery view in Android, is their any way to set a title or set image name for the gallery items?

Technically I would like to name each and every gallery item. Is this possible?

Thanks,
Sana.

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

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

发布评论

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

评论(1

Oo萌小芽oO 2024-11-06 07:38:37

这是可能的,有两种解决方案。

您可以拥有这些标题组件(例如 TextView),并在 setOnItemSelectedListener.onItemSelected 方法中更新其值,该方法是在您使用位于中心的新对象四处晃动 itens 时调用的。

在这种情况下:假设您有一个 LinearLayout,其中有一个 id 为“title”的 TextView,其下方有一个 id 为“itens”的 Gallery。

您应该有一个像这样的方法:

    title = (TextView) findViewById(R.id.title);
    gallery = (Gallery) findViewById(R.id.itens);

    coverflow.setAdapter(yourSimpleAdapterWithYourData);

    coverflow.setCallbackDuringFling(true);
    coverflow.setOnItemSelectedListener(new OnItemSelectedListener() {
        @Override
        public void onItemSelected(AdapterView<?> arg0, View arg1,
                int arg2, long arg3) {
            MyObject book = myData.get(arg2);
            title.setText(book.getTitle());
        }

        @Override
        public void onNothingSelected(AdapterView<?> arg0) {
        }
    });

或者

您可以编写自己的适配器并膨胀一个布局,您可以在那里设置标题。

It's possible, with two solutions.

You can has these components for titles (Such a TextView) and update its value in the setOnItemSelectedListener.onItemSelected method, that was called when you are flinging your itens around with the new object that will be in the center.

In this case: lets say you have an LinearLayout with an TextView with id: "title" and below it an Gallery with id: "itens".

You should have a method like this:

    title = (TextView) findViewById(R.id.title);
    gallery = (Gallery) findViewById(R.id.itens);

    coverflow.setAdapter(yourSimpleAdapterWithYourData);

    coverflow.setCallbackDuringFling(true);
    coverflow.setOnItemSelectedListener(new OnItemSelectedListener() {
        @Override
        public void onItemSelected(AdapterView<?> arg0, View arg1,
                int arg2, long arg3) {
            MyObject book = myData.get(arg2);
            title.setText(book.getTitle());
        }

        @Override
        public void onNothingSelected(AdapterView<?> arg0) {
        }
    });

OR

You can write your own adapter and inflate a layout witch you can set the title there.

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