Android:列表元素,固定布局

发布于 2024-12-18 09:14:23 字数 1325 浏览 0 评论 0原文

我遇到了布局问题。奇怪的是,我在网上找不到解决方案。也许这里有人愿意帮助我? 我想显示这样的列表:

在此处输入图像描述

但我能得到的只是:

在此处输入图像描述

这是我的列表项的 xml 代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content" android:layout_height="wrap_content">

    <ImageView android:id="@android:id/icon" android:layout_width="22px"
        android:layout_height="22px" android:layout_marginLeft="4px"
        android:layout_marginRight="10px" android:layout_marginTop="4px"
        android:src="@drawable/icon" />

    <TextView android:id="@android:id/text1" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:layout_marginLeft="4px"
        android:layout_marginRight="10px" android:textSize="20px" />

    <TextView android:id="@android:id/text2" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:layout_marginLeft="4px"
        android:layout_marginRight="10px" android:textSize="20px" 
        android:layout_alignParentRight="true" 
        android:layout_weight="0.4" />

</LinearLayout>

非常感谢您的帮助,谢谢;)

I've got a layout problem. What's odd, I couldn't find a solution online. Maybe someone here would like to help me?
I would like to display a list like that:

enter image description here

But all I can get is this:

enter image description here

Here's my xml code for list item:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content" android:layout_height="wrap_content">

    <ImageView android:id="@android:id/icon" android:layout_width="22px"
        android:layout_height="22px" android:layout_marginLeft="4px"
        android:layout_marginRight="10px" android:layout_marginTop="4px"
        android:src="@drawable/icon" />

    <TextView android:id="@android:id/text1" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:layout_marginLeft="4px"
        android:layout_marginRight="10px" android:textSize="20px" />

    <TextView android:id="@android:id/text2" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:layout_marginLeft="4px"
        android:layout_marginRight="10px" android:textSize="20px" 
        android:layout_alignParentRight="true" 
        android:layout_weight="0.4" />

</LinearLayout>

I'd appreciate your help, thank you;)

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

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

发布评论

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

评论(1

海未深 2024-12-25 09:14:23

在上面的代码中使用RelativeLayout而不是线性布局,因为android:layout_alignParentRight="true"仅适用于relativelatout而不是线性布局。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content" android:layout_height="wrap_content">

    <ImageView android:id="@android:id/icon" android:layout_width="22px"
        android:layout_height="22px" android:layout_marginLeft="4px"
        android:layout_marginRight="10px" android:layout_marginTop="4px"
        android:src="@drawable/icon" />

    <TextView android:id="@android:id/text1" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:layout_marginLeft="4px"
        android:layout_marginRight="10px" android:textSize="20px" />

    <TextView android:id="@android:id/text2" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:layout_marginLeft="4px"
        android:layout_marginRight="10px" android:textSize="20px" 
        android:layout_alignParentRight="true" 
        android:layout_weight="0.4"
        />

</RelativeLayout>

Use RelativeLayout in above code not linearlayout because android:layout_alignParentRight="true" works only relativelatout not linearlayout.

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content" android:layout_height="wrap_content">

    <ImageView android:id="@android:id/icon" android:layout_width="22px"
        android:layout_height="22px" android:layout_marginLeft="4px"
        android:layout_marginRight="10px" android:layout_marginTop="4px"
        android:src="@drawable/icon" />

    <TextView android:id="@android:id/text1" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:layout_marginLeft="4px"
        android:layout_marginRight="10px" android:textSize="20px" />

    <TextView android:id="@android:id/text2" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:layout_marginLeft="4px"
        android:layout_marginRight="10px" android:textSize="20px" 
        android:layout_alignParentRight="true" 
        android:layout_weight="0.4"
        />

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