如何在 android 中并排显示图像及其 url
我想并排显示图像和它的 url。
我怎样才能实现这个目标?
I want to display an image and the url of it side by side.
How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
说实话,你提的问题不太好,不太符合这里的要求。无论如何,由于您似乎完全是初学者,而且这是您在这里提出的第一个问题(欢迎!),我将提供一些信息。
您需要两种视图。第一个是 ImageView ,您可以在其中显示图像。第二个可以是一个简单的 TextView ,您可以在其中将文本设置为网址。
要使它们并排显示,您需要一个具有方向的 LinearLayout设置为水平。在该布局内,您可以放置 ImageView 和 TextView。两个视图都应将layout_width 设置为
wrap_content
,将layout_weight 设置为1
。然后,您可以在 Activity 中将图像设置为 ImageView,将 URL 设置为 TextView。
这是简单的 xml 布局:
可以找到 LinearLayout 教程在官方文档中,显示并解释了很多视图和布局 。
To be honest, you question is not a good one and doesn't really fit the requirements here. Anyway, as you seem to be a totally beginner and because thats your first question here (welcome!), I will provde some infos.
Two kind of views do you need. The first one will be an ImageView where you can display your image with. The second one can be a simple TextView where you can set the text to the URL.
To make them displayed side by side, you need a LinearLayout with the orientation set to horizontal. Inside that layout you can place the ImageView and than the TextView. Both views should have the layout_width set to
wrap_content
and the layout_weight to1
.In your activity you can then set the image to the ImageView and the URL to the TextView.
Here is the simple xml layout:
A LinearLayout tutorial can be found in the official docs where a lot of views and layouts are shown and explained.