如何在android中将imageview从一个布局移动到另一个布局

发布于 2024-11-30 12:16:21 字数 256 浏览 0 评论 0原文

在我的项目中有两种布局。在第一个(上图)中,我有 3 imageviewslargersize 在另一个(下面)中,我有 3 imageviews 与上面的布局相同,但尺寸较小。

当我单击上面布局中的图像时,图像应该移动到下面的布局,其中存在受尊重的图像。

我该怎么做?

In my project there are two layouts .In the first one(above)in which i have 3 imageviews of largersize and in the other(below) I had 3 imageviews same as above layout but of smaller size.

When I click the image in above layout the image should move to below layout where the respected image is present.

How can I do this?

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

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

发布评论

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

评论(1

暖阳 2024-12-07 12:16:21

您可以使用 onClick 方法(您可以使用 android:onClick="nameofTheMethod" 分配给 xml 中的图像,并且该方法必须是 public void nameOfTheMethod (View v) )
并在该方法中更改图像视图的 src 。

myImgView.setImageResource(R.drawable.imagen);

如果您想调整图像大小,android 会为您执行此操作。您必须在 Drawable-hdpi ldpi 和 mdpi 中放置不同的调整大小图像

You can use the onClick method (you can asigne to the imagen in the xml with android:onClick="nameofTheMethod" and the method must be public void nameOfTheMethod (View v) )
and in that method change the src of the image views.

myImgView.setImageResource(R.drawable.imagen);

If you want to resize the image android do this for you. You must to put a different resizen images in Drawable-hdpi ldpi and mdpi

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