如何在 android 中并排显示图像及其 url

发布于 2024-12-04 11:19:28 字数 44 浏览 0 评论 0原文

我想并排显示图像和它的 url。

我怎样才能实现这个目标?

I want to display an image and the url of it side by side.

How can I achieve this?

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

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

发布评论

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

评论(1

得不到的就毁灭 2024-12-11 11:19:28

说实话,你提的问题不太好,不太符合这里的要求。无论如何,由于您似乎完全是初学者,而且这是您在这里提出的第一个问题(欢迎!),我将提供一些信息。

您需要两种视图。第一个是 ImageView ,您可以在其中显示图像。第二个可以是一个简单的 TextView ,您可以在其中将文本设置为网址。

要使它们并排显示,您需要一个具有方向的 LinearLayout设置为水平。在该布局内,您可以放置​​ ImageView 和 TextView。两个视图都应将layout_width 设置为wrap_content,将layout_weight 设置为1

然后,您可以在 Activity 中将图像设置为 ImageView,将 URL 设置为 TextView。

这是简单的 xml 布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="horizontal"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
  <ImageView
    android:src="@drawable/icon"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_weight="1"/>
  <TextView
    android:text="dummytext"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_weight="1"/>
</LinearLayout>

可以找到 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 to 1.

In your activity you can then set the image to the ImageView and the URL to the TextView.

Here is the simple xml layout:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="horizontal"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
  <ImageView
    android:src="@drawable/icon"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_weight="1"/>
  <TextView
    android:text="dummytext"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_weight="1"/>
</LinearLayout>

A LinearLayout tutorial can be found in the official docs where a lot of views and layouts are shown and explained.

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