动态设置图像视图框架
在我的应用程序中,我将一定数量的图像从我的设备发送到其他设备。我实现了这一切。现在我想要的是,当我仅发送 1 个图像到其他设备时,图像视图的框架应该是全屏。如果我发送 2 个图像,那么框架应该是这样的;-2 个图像覆盖整个屏幕。所以框架应该根据发送的图像数量动态变化。目前我正在使用表格视图来显示接收到的图像。还有什么选择可能是最好的实现我的目标。请帮助。以前做过此类工作的人,请我需要你的帮助。
谢谢, 雏菊
In my app i am sending certain number of images from my device to other device.I achieved all this .Now what i want is that when i send only 1 image to other device ,then the frame of the image view should be the full screen.If i send 2 images then the frame should be like this;-2 images covering the whole scree.So the frame should change dynamically according to the number of images sent.Currently i am using table view to display the received images .What other option could be the best to achieve my target.Please help .Anyone done this type of work before ,please i need your help.
Thanks,
Daisy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以执行以下操作:
此示例垂直列出图像。当您还想要一个水平列表时,那么您必须使用数学。
该代码未经过测试。
You can do something like this:
This example lists the images vertically. When you want also a horizontal list, then you have to use maths.
The code is not tested.