1

我无法使用 LayoutInflater 扩展 xml(包含 QuickContactBadge 的布局)文件,以便在 ListView 中使用它。它不会产生编译/运行时错误或正确的预期输出。从 XML 布局文件中删除 QuickContactBadge 后,它会正确膨胀。如何解决这个问题?

  1. 是否可以扩展具有 QuickContactBadge 的 XML 布局文件?
  2. 如果可能,膨胀具有 QuickContactBadge 的 XML 布局文件以在 ListView 中使用的正确程序是什么?

编辑

message_item.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/lLayoutMessageItemHolder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >


<QuickContactBadge
    android:id="@+id/quickContactBadge1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

<LinearLayout
    android:id="@+id/lLayoutContentDisplayHolder"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/tvPerson"
        android:textIsSelectable="false"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@string/strPerson"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <TextView
        android:id="@+id/tvMessage"
        android:textIsSelectable="false"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@string/strLastMessage" />

    <TextView
        android:id="@+id/tvTime"
        android:textIsSelectable="false"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@string/strLastMessageReceivedTime" />

</LinearLayout>

</LinearLayout>

编辑:ContactListAdapter.java 的更新代码和 getView() 方法

public View getView(int position, View convertView, ViewGroup parent) {
    // TODO Auto-generated method stub
    //return super.getView(position, convertView, parent);
    if(context != null){
        LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View linearLayout = inflater.inflate(R.layout.message_item, null);
        Contact contact = (Contact)getItem(position);
        TextView tvPerson = (TextView)linearLayout.findViewById(R.id.tvPerson);
        tvPerson.setText("Sample Text");
        Log.i("Test","Sample Text");
        return linearLayout;
    }else{
        return null;
    }
}

控制台输出:

07-10 17:00:26.511: I/Test(3574): Sample Text
07-10 17:00:26.611: I/Test(3574): Sample Text
07-10 17:00:26.621: I/Test(3574): Sample Text
07-10 17:00:26.641: I/Test(3574): Sample Text
07-10 17:00:26.661: I/Test(3574): Sample Text
07-10 17:00:26.691: I/Test(3574): Sample Text
07-10 17:00:26.701: I/Test(3574): Sample Text

PS:我没有为该布局中使用的所有小部件设置值。我希望该列表只有人名,但在编译和运行时都没有产生任何错误。但它只显示空屏幕。

4

1 回答 1

1

您的问题出在您的 getView 函数中 - 它需要返回您膨胀的线性布局。我不确定它的返回视图不是局部变量。

此外,您只想在传入的 convertView 为空时进行膨胀 - 否则您想设置数据而不进行膨胀以重用视图。

于 2013-07-09T14:35:45.553 回答