更改图库视图?

发布于 2024-11-26 10:07:41 字数 61 浏览 2 评论 0原文

我想改变画廊的看法。相反,它直接在屏幕上显示图像。我想让它像旋转木马一样绕一圈。

这可以吗?

I would to change the view of the gallery. Instead it diplaying images straight across the screen. i would like to make it go in a circle sort of like a carousel.

Is this possible to do?

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

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

发布评论

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

评论(2

烈酒灼喉 2024-12-03 10:07:41

之前已经有人问过这个问题,请参阅此问题。它的答案实际上似乎是一个非常好的方法,因为您不必处理修改视图本身。

This has been asked before, see this question. It's answer actually seems like a pretty good approach since you won't have to deal with modifying the view itself.

记忆消瘦 2024-12-03 10:07:41

试试这个:

public class CircularAdapter extends BaseAdapter {

private ArrayList<Drawable> mDrawables;

private CircularAdapter(ArrayList<Drawable> drawables){
    mDrawables=drawables;
}
@Override
public int getCount() {
    return 10000;
}
@Override
public Object getItem(int position) {
    return null;
}
@Override
public long getItemId(int position) {
    return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
    //Setup custom View
    //...
    imageView.setDrawable(mDrawables.get(position % mDrawables.size()));
    return convertView;
}

}

Try this:

public class CircularAdapter extends BaseAdapter {

private ArrayList<Drawable> mDrawables;

private CircularAdapter(ArrayList<Drawable> drawables){
    mDrawables=drawables;
}
@Override
public int getCount() {
    return 10000;
}
@Override
public Object getItem(int position) {
    return null;
}
@Override
public long getItemId(int position) {
    return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
    //Setup custom View
    //...
    imageView.setDrawable(mDrawables.get(position % mDrawables.size()));
    return convertView;
}

}

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