如何在android中将imageview从一个布局移动到另一个布局
在我的项目中有两种布局。在第一个(上图)中,我有 3 imageviews
的 largersize
在另一个(下面)中,我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 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