惰性列表布局

发布于 2024-12-07 07:01:06 字数 271 浏览 0 评论 0原文

我创建了自己的 Lazylist,它最初是由 Fedor 创建的(ListView 中图像的延迟加载)。我正在尝试制作自己的自定义布局,如下图所示。有办法实现这个吗?

在此处输入图像描述

I created my own Lazylist which originally created by Fedor here(Lazy load of images in ListView). I am trying to make my own custom Layout which looks like the image below. Is there anyway to accomplish this?

enter image description here

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

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

发布评论

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

评论(1

久夏青 2024-12-14 07:01:06

像这样修改你的 item.xml

<RelativeLayout android:layout_height="55sp"
        android:layout_width="fill_parent" android:padding="5sp" android:layout_marginLeft="6sp"
        android:layout_marginRight="6sp" android:layout_marginBottom="3sp"
        android:layout_marginTop="3sp">         
    <ImageView android:layout_alignParentTop="true"
        android:layout_alignParentBottom="true" android:layout_marginRight="6dip"
        android:id="@+id/image" android:layout_height="50sp"
        android:layout_width="50sp" android:src="@drawable/icon"/>
    <TextView android:id="@+id/title" android:layout_width="fill_parent"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true" android:ellipsize="marquee"
        android:layout_toRightOf="@+id/image" android:maxLines="1"
        android:gravity="center_vertical" android:layout_height="wrap_content" android:text="Hello"/>
    <TextView android:layout_width="fill_parent"
        android:id="@+id/desc"
        android:layout_alignParentRight="true" android:layout_alignParentTop="true"
        android:layout_above="@+id/title"
        android:layout_alignWithParentIfMissing="true" android:gravity="center_vertical"
        android:textStyle="bold" android:layout_toRightOf="@+id/image"
        android:layout_height="fill_parent" android:textSize="15sp" android:text="Title"/>
</RelativeLayout>

modify your item.xml like this way

<RelativeLayout android:layout_height="55sp"
        android:layout_width="fill_parent" android:padding="5sp" android:layout_marginLeft="6sp"
        android:layout_marginRight="6sp" android:layout_marginBottom="3sp"
        android:layout_marginTop="3sp">         
    <ImageView android:layout_alignParentTop="true"
        android:layout_alignParentBottom="true" android:layout_marginRight="6dip"
        android:id="@+id/image" android:layout_height="50sp"
        android:layout_width="50sp" android:src="@drawable/icon"/>
    <TextView android:id="@+id/title" android:layout_width="fill_parent"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true" android:ellipsize="marquee"
        android:layout_toRightOf="@+id/image" android:maxLines="1"
        android:gravity="center_vertical" android:layout_height="wrap_content" android:text="Hello"/>
    <TextView android:layout_width="fill_parent"
        android:id="@+id/desc"
        android:layout_alignParentRight="true" android:layout_alignParentTop="true"
        android:layout_above="@+id/title"
        android:layout_alignWithParentIfMissing="true" android:gravity="center_vertical"
        android:textStyle="bold" android:layout_toRightOf="@+id/image"
        android:layout_height="fill_parent" android:textSize="15sp" android:text="Title"/>
</RelativeLayout>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文