Java tutorial
/** * Copyright 2011 Kurtis L. Nusbaum * * This file is part of UDJ. * * UDJ is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * UDJ is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with UDJ. If not, see <http://www.gnu.org/licenses/>. */ package org.klnusbaum.udj; import android.support.v4.content.Loader; import android.accounts.Account; import android.app.SearchManager; public class ArtistSearchFragment extends SearchFragment { public Loader<MusicSearchLoader.MusicSearchResult> getLoader(Account account) { String artistQuery = getActivity().getIntent().getStringExtra(SearchManager.QUERY); return new ArtistSearchLoader(getActivity(), artistQuery, account); } }