- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法使用 LayoutInflater 扩充 xml(包含 QuickContactBadge 的布局)文件,以便在 ListView 中使用它。它不会产生编译/运行时错误或正确的预期输出。从 XML 布局文件中删除 QuickContactBadge 后,它会正确膨胀。如何解决这个问题?
编辑
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/
我正在开发一个应用程序,我在其中显示来自服务器的一些联系人,目前我正在对来自服务器的联系人进行排序,但现在我想使用 IOS -> 设置 -> 联系人 -> 显示顺序读取联系人设置新的联系人框架,我没有
我希望检测一个(球)何时接触另一个物体(目标),并且我希望知道该接触的冲动。 我知道三种检测联系人的方法 gContactAddedCallback 或 int numManifolds =
我正在开发我的第一个 Android 应用程序,想知道我可以调用什么来显示这个“联系人 Pane ”: 当然,我指的是下方带有联系人照片、姓名和操作图标的小 Pane 。 作为一个相关问题...这个小
我正在研究如何从 android 上的联系人列表中导入数据。在模拟器中,我注意到一个位于顶部的联系人组,其中只包含一个我自己的联系人。其余联系人如下。 但是,当我使用下面的代码时 Intent pic
如何添加从地址簿/联系人列表导入联系人号码并将其添加到数组中的功能? 编辑 如果您看过高级通话管理器应用程序,它允许您从联系人列表中选择联系人并将其添加到黑名单。我想做同样的事情,从联系人列表中选择一
我正在阅读有关内容提供商的信息,并且对从 android 中选择联系人有点困惑。我从 Stackoverflow 中阅读了很多示例,并且混淆了一些人正在使用 content://contacts/pe
.NET 有许多不同的 Google API dll,例如 Google.Apis.Calendar.v3。但联系人 API 没有任何内容。使用旧版本或其他方法并不是解决方案,因为我已经使用了多个 A
我收到此错误 django.urls.exceptions.NoReverseMatch:未找到“联系人”的反向。 “contact”不是有效的 View 函数或模式名称。我可能做错了什么,djang
每当我使用 Google Contacts Api v3 列出我的联系人时,查询都会返回 480 个结果,而我在我的联系人上只有 269 个联系人列表。 我正在尝试过滤它们,以便它只显示来自我的联系人
我正在使用 django 1.3.1 和 satchmo 0.9.2。我使用了 Satchmo 附带的默认模型,称为“Contact”。我创建了一个 satchmo_mod 应用程序和一个 admin
当我使用“这个解决方案”时,我得到一个空白的联系人数组。 我在 examples/contacts 文件夹中使用“google-api-php-client-0.6.7”和 serviceAccoun
使用 ABAddressBook,当我希望用户能够为他们以前从未见过的联系人选择“创建新联系人”和“添加到现有联系人”选项时,我会创建并显示一个 ABUnknownPersonViewControll
我正在探索 ionic 4 中的新导航(类型为 angular),您可以在选项卡项目中找到它 href="/tabs/(contact:contact)" 什么是 (contact:contact)
我已经使用这个 API 6 年了,没有任何问题,但是从 3 天前开始,我遇到了一系列奇怪的行为,意识到我的 google 联系人开始不受控制地复制。我发现它与检索联系人时 1.500 的奇怪限制有关,
我在 main 中初始化了 box 数据库如下 void main() async { WidgetsFlutterBinding.ensureInitialized(); final
我使用 var contacts:[details] 编写代码? = nil 我遇到了无法访问 contacts?.count 的问题,我不得不在任何地方使用可选值。例如 contacts[index
我正在从我的手机联系人列表中获取我的联系人图像 uri。 但是,当我尝试将图像 uri 转换为位图时,我收到错误: java.io.FileNotFoundException: content://c
我浏览了很多帖子,但没有找到任何有效甚至正确回答问题的答案。我最接近的是这个 How to avoid duplicate contact name (data ) while loading con
我正在使用 Google Contact API v3。目标是在我的数据库和 Google 帐户之间同步联系人。我的问题是: 1) 当我在没有联系人组的情况下通过电子邮件地址搜索联系人时,我得到了一个
我想在联系表单 7 中的特定输入类型上添加 Id 和 Class 属性。 当我添加以下示例时,它在输入类型上方的 SPAN 标记上应用 Id 和 Class [radio amount id:amou
我是一名优秀的程序员,十分优秀!