android – List中的TextView被截断

android – List中的TextView被截断,第1张

概述我有一个带有imageview的自定义ListView和在imageview旁边的2个TextViews.底部的textView包含标题的描述,但它被列表截断. http://tinypic.com/r/28tawrc/7 – 我得到了什么 这就是我在“row.xml”中的内容: <?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns: 我有一个带有imagevIEw的自定义ListVIEw和在imagevIEw旁边的2个TextVIEws.底部的textVIEw包含标题的描述,但它被列表截断.

http://tinypic.com/r/28tawrc/7 – 我得到了什么

这就是我在“row.xml”中的内容:

<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:gravity="left|center" androID:minHeight="?androID:attr/ListPreferredItemHeight"    androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent">    <ImageVIEw androID:ID="@+ID/icon" androID:layout_height="50px"        androID:layout_wIDth="50px" androID:minHeight="?androID:attr/ListPreferredItemHeight"        androID:scaleType="fitXY" androID:layout_gravity="center"></ImageVIEw>    <linearLayout androID:ID="@+ID/linearLayout01"        androID:orIEntation="vertical" androID:layout_marginleft="5dip"        androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent"        androID:minHeight="?androID:attr/ListPreferredItemHeight"        androID:layout_weight="1">        <TextVIEw androID:ID="@+ID/TextVIEw01" androID:text="hi"            androID:textcolor="#336600" androID:textSize="16dip"            androID:layout_wIDth="fill_parent" androID:gravity="center_vertical"            androID:ellipsize="marquee" androID:layout_weight="1"            androID:layout_height="fill_parent"></TextVIEw>        <TextVIEw androID:text="hi" androID:ID="@+ID/TextVIEw02"            androID:textcolor="#FFFFFF" androID:textSize="14dip" androID:gravity="top"            androID:lines="20" androID:layout_wIDth="fill_parent"            androID:minHeight="?androID:attr/ListPreferredItemHeight"            androID:layout_height="fill_parent" androID:layout_weight="1"            androID:singleline="false"></TextVIEw>    </linearLayout></linearLayout>

如何才能显示其余文本?

@H_404_20@解决方法 尝试将linearLayouts上的两个androID:layout_height =“fill_parent”值更改为androID:layout_height =“wrap_content”. fill_parent在这种情况下没有多大意义. 总结

以上是内存溢出为你收集整理的android – List中的TextView被截断全部内容,希望文章能够帮你解决android – List中的TextView被截断所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1128218.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存