我正在尝试加载我的联系人到ListView 。我不知道从哪里开始,所以我搜索了www并找到了一些例子。其中之一(https://github.com/codepath/android_guides/wiki/Loading-Contacts-with-Content-Providers) 很好地描述了这种方法。现在我根本不知道,标签的用途是什么。
我尝试重现该示例并使用
CharSequence mailType = ContactsContract.CommonDataKinds.Email.getTypeLabel(context.getResources(), type, null);
而不是
CharSequence emailType = ContactsContract.CommonDataKinds.Email.getTypeLabel(context.getResources(), type, customLabel);
如示例所示,每一个对我来说都很好。 那个标签是什么?
提前致谢!