我对使用内容提供商有点陌生。我想知道如何从内容提供者那里获得特定的行?
例如,我将如何获得我的提供者的第一行?
这是我尝试过的,但它不起作用:
final Cursor cursorConversations = getActivity().getContentResolver()
.query(CONTENT_URI, null, null, null, null);
Toast.makeText(
getActivity(),
cursorConversations.getString(cursorConversations
.getColumnIndex(Columns.TITLE)),
Toast.LENGTH_LONG).show();