views:

45

answers:

1

For some reason, the text has 0 width in the second row.

alt text

Code:

public LinearLayout getView(int position, View convertView, ViewGroup parent){
    LinearLayout rowView;
    if(convertView==null){
        rowView=(LinearLayout) mActivity.getLayoutInflater().inflate(R.layout.icon_list, null);
    }else{!
        rowView=(LinearLayout) convertView;
    }
    //Image view
    ImageView imageView=(ImageView) rowView.findViewById(R.id.list_icon);
    Pair<String,Bitmap> p=getItem(position);
    imageView.setImageBitmap(p.second);
    //Text view
    TextView textView=(TextView) rowView.findViewById(R.id.list_text);
    textView.setText("AAAA");
    return rowView;
}

XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="20dip"
    android:id="@+id/icon_list"
    android:padding="6dip">

    <ImageView android:id="@+id/list_icon"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_marginRight="6dip"
        android:layout_gravity="left"/>

    <TextView android:id="@+id/list_text"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:gravity="center_vertical"/>

</LinearLayout>

EDIT:

Before I had accidentally left in the line.

android:src="@drawable/icon"

I removed it, but the problem remains

A: 

This isn't a very good answer, but it worked well enough. I set the layout_width and layout_height of Android 45dip. This then caused everything to work properly. I still don't understand how it was allowed to ignore the android:layout_height="20dip" for the section.

Casebash