在表格布局中交换图像

发布于 2024-10-20 11:01:54 字数 188 浏览 0 评论 0原文

我有一个 ImageView 的 2D 数组,目前正在 tableLayout 中显示它们中的每一个。如果我想切换 ImageView,我认为我需要交换每个 [i][j] imageView 分配到的位图。例如,如果我想交换 [0][0] 和 [0][1] 处的图像位置,我该怎么做?

我有一种感觉,我需要将每个底层位图重新分配给适当的图像视图。

I have a 2D array of ImageViews and am currently displaying each of them in a tableLayout. If I wanted to switch the ImageViews, I think that I need to swap the bitmaps that each [i][j] imageViews are assigned to. For example, if I wanted to swap positions of the images at [0][0] and [0][1], how would I do this?

I have a feeling that I would need to reassign each underlying bitmap to the appropriate imageview.

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

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

发布评论

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

评论(1

桜花祭 2024-10-27 11:01:54

您可以尝试在图像视图上获取可绘制对象并将其保存到变量中:

Drawable d1 = imageViews[0][0].getDrawable();
Drawable d2 = imageViews[0][1].getDrawable();

然后通过以下方式交换可绘制对象:

imageViews[0][0].setImageDrawable(d2);
imageViews[0][1].setImageDrawable(d1);

我认为这将切换视图的图像,或者您实际上需要移动图像视图的位置吗?

You could try getting the Drawable, on the imageviews and save it to variables:

Drawable d1 = imageViews[0][0].getDrawable();
Drawable d2 = imageViews[0][1].getDrawable();

Then you swap the drawables by:

imageViews[0][0].setImageDrawable(d2);
imageViews[0][1].setImageDrawable(d1);

I think that will switch the images of the views, or do you actually need to move the positions of the imageviews?

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