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.
用途:
我想在选项卡上显示所有联系人,在另一个选项卡中我想显示所有组。用户可以选择多个联系人或组。
问题:
从 Android 通讯录中获取联系信息的最佳方法是什么?
我想获得所有人的联系人和所有组。
您可以为此使用 StorIOContentResolver
storIOContentResolver .get() .cursor() // or listOfObjects() .withQuery(...) // Here you need to create a query to retrieve contacts info .prepare() .executeAsBlocking() // or createObservable()