Java tutorial
//package com.java2s; /* * Copyright (C) 2012 Andrew Neal * Copyright (C) 2014 The CyanogenMod Project * Licensed under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law * or agreed to in writing, software distributed under the License is * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ import android.content.Context; import android.database.Cursor; import android.net.Uri; import android.provider.BaseColumns; import android.provider.MediaStore; public class Main { /** * Returns a fancy search query cursor * * @param context * @param query query string * @return cursor of the results */ public static Cursor createSearchQueryCursor(final Context context, final String query) { final Uri uri = Uri.parse("content://media/external/audio/search/fancy/" + Uri.encode(query)); final String[] projection = new String[] { BaseColumns._ID, MediaStore.Audio.Media.MIME_TYPE, MediaStore.Audio.Artists.ARTIST, MediaStore.Audio.Albums.ALBUM, MediaStore.Audio.Media.TITLE, "data1", "data2" }; // no selection/selection/sort args - they are ignored by fancy search anyways return context.getContentResolver().query(uri, projection, null, null, null); } }