Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个应用程序,因为我有联系方式,当我点击联系号码时,它会询问一些选项,如通话。如何访问黑莓中的联系人列表,以便它应该显示电话的联系人列表。与显示的图像类似:
BlackBerryContactList list = (BlackBerryContactList) PIM.getInstance().openPIMList(PIM.CONTACT_LIST, PIM.READ_ONLY); PIMItem contact = list.choose();
这使您可以导航、编辑和选择联系人。之后,您可以使用所选联系人的信息进行通话,或发送短信等。
如果本机选择器不是您想要的,请遍历列表中的条目并构建您自己的选择器。