I m在Sony GTV和Logitech revue GTV上工作。
I want to run managedQuery for the Google quicksearchbox
.
I found after running dumpstate
, in the "Registered ContentProviders" section,
that the Content_Uri is : "com.android.quicksearchbox.google".
But when I use that URI in a query:
Uri uri = Uri.parse("content://com.android.quicksearchbox.google");
Cursor mCursor = managedQuery(uri, null, null, null, null);
I receive an "Unknown URI" error message.
它与YouTube的内容合作。
Uri uri = Uri.parse("content://com.google.android.youtube.googletv.SuggestionProvider");
Cursor mCursor = managedQuery(uri, null, null, null, null);
我在哪里错了?