gpt4 book ai didi

android - 如何使用 Layout inflater 在 android 中为 Quick contact badge 充气?

转载 作者:行者123 更新时间:2023-11-30 03:30:40 24 4
gpt4 key购买 nike

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

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

编辑

message_item.xml



<pre><code><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>
</code></pre>

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



<pre><code>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;
}
}
</code></pre>

控制台输出:



<pre><code>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
</code></pre>

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

最佳答案

您的问题出在您的 getView 函数中 - 它需要返回您膨胀的 linearLayout。我不确定它返回的是什么—— View 不是局部变量。

此外,如果传入的 convertView 为 null,您只想膨胀 - 否则您想要设置数据而不膨胀以重用 View 。

关于android - 如何使用 Layout inflater 在 android 中为 Quick contact badge 充气?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17529998/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com