コード例 #1
0
  /** Called when the CollectionLoader has finished loading. */
  @Override
  public void onLoadFinished(Loader<Collection> loader, Collection coll) {
    super.onLoadFinished(loader, coll);

    mArtistAdapter =
        new ArrayAdapter<Artist>(
            getActivity(),
            R.layout.single_line_list_item,
            R.id.single_line_list_textview,
            coll.getArtists());
    setListAdapter(mArtistAdapter);
  }