android中ListView行的动态高度

前端之家收集整理的这篇文章主要介绍了android中ListView行的动态高度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我看到我的ListView有一个奇怪的行为,我似乎无法解决这个问题.

我有一个ListView,它填充了一些数据.每行包含一个图像和三个文本标签.这是我的行的XML(我在Adapter的getView方法中对它进行了膨胀):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
     android:paddingTop="0dip"
     android:paddingBottom="0dip"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:orientation="horizontal">

    <ImageView android:id="@+id/Icon"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="2"
        android:padding="2dp"
        android:scaleType="fitCenter"
        android:contentDescription="@string/app_icon"/>

    <TextView android:id="@+id/TxtName"
         android:scrollHorizontally="false"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent"
         android:textColor="@android:color/black"
         android:background="@color/list_bg1"
         android:layout_weight="2"
         android:padding="2dp"/>

     <TextView android:id="@+id/TxtPackage"
         android:scrollHorizontally="false"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent"
         android:layout_weight="2"
         android:textColor="@android:color/black"
         android:background="@color/list_bg2"
         android:padding="2dp"/>

     <TextView android:id="@+id/TxtSource"
         android:scrollHorizontally="false"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent"
         android:layout_weight="2"
         android:background="@color/list_bg3"
         android:textColor="@android:color/black"
         android:padding="2dp"/>
</LinearLayout>

现在,进入文本字段的任何内容都可以是任何长度(从几个字符到80-100个字符),我希望标签只是换行,并且要扩展行的高度以适应包装标签的高度.

然而,标签确实包好,但行的高度不会扩大,因此标签底部会被切断.这是我的getView方法

@Override
public View getView(int position,View convertView,ViewGroup parent) {
    SetInfo app = (SetInfo)getItem(position);
    if(app == null)
        return null;

    LinearLayout row = (LinearLayout) (convertView == null
               ? LayoutInflater.from(context).inflate(R.layout.listitem,parent,false)
               : convertView);
    ((TextView)row.findViewById(R.id.TxtName)).setText(app.getName());
    ((TextView)row.findViewById(R.id.TxtPackage)).setText(app.getPackage());
    ((TextView)row.findViewById(R.id.TxtSource)).setText(app.getSource());
    if(app.getIcon() != null)
        ((ImageView)row.findViewById(R.id.Icon)).setImageDrawable(app.getIcon());
    return row;
}

如何让行具有不同的高度,自动调整以适应所有内容

解决方法

尝试更改TextViews以使用android:layout_height =“wrap_content”.
原文链接:https://www.f2er.com/android/309973.html

猜你在找的Android相关文章