如何复制消息应用程序中选择联系人的功能?
Android 的消息应用程序位于projects/platform/packages/apps/Mms.git 中,有一个名为RecipientsEditor 的类。我希望能够创建 MultiAutoCompleteTextView ,以相同的方式过滤联系人,以便在我的应用程序中轻松选择联系人。使用彩信应用程序很麻烦,因为它使用内部 API 并且所有内容都跨类划分。
有没有人做了一个简单的方法来做到这一点?
Android's messaging app, located in projects/platform/packages/apps/Mms.git has a class called RecipientsEditor. I would like to be able to create MultiAutoCompleteTextView that will filter contacts the same way, to make contact selection easy in my app. using the mms app is cumbersome since it uses internal apis and has everything split across classes.
Has anyone made an easy way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于公共应用程序来说这是一个坏主意,但是如果您有正确的类加载器,您可以使用其他应用程序中的代码和资源。我写过它,使用
createPackageContext
和一些反射。It's a bad idea for public applications but you can use code and resources from other applications if you have the right class loader. I wrote about it, using
createPackageContext
and some reflection.