我正在使用一个应用程序,用户可以在该应用程序中从电话联系人中选择联系人并向他们发送消息。我正在为这样的电话联系人获取光标`
Cursor cursor =getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null,null,null, null);
我在 cursoradapter 中使用这个光标在 listview 中显示它,并且我有一个数据库来存储用户选择的联系人。现在我只想显示 listview 中不在我的数据库中的联系人,我的意思是我想要类似的select name,phonenumber from contact except select name,phonenumber from mydatabase
东西在我将在 cursoradapter 中使用的游标中得到这个结果。这可能吗?我该怎么做,请帮帮我。提前谢谢!.