use of com.sdsmdg.harjot.MusicDNA.imageloader.ImageLoader in project MusicDNA by harjot-oberai.
the class FolderFragment method onAttach.
@Override
public void onAttach(Context context) {
super.onAttach(context);
try {
imgLoader = new ImageLoader(context);
imgLoader.type = "folder";
mCallback = (onFolderClickedListener) context;
} catch (ClassCastException e) {
throw new ClassCastException(context.toString() + " must implement OnHeadlineSelectedListener");
}
}
use of com.sdsmdg.harjot.MusicDNA.imageloader.ImageLoader in project MusicDNA by harjot-oberai.
the class ViewArtistFragment method onAttach.
@Override
public void onAttach(Context context) {
super.onAttach(context);
ctx = context;
activity = (HomeActivity) context;
try {
imgLoader = new ImageLoader(context);
mCallback = (artistCallbackListener) context;
} catch (ClassCastException e) {
throw new ClassCastException(context.toString() + " must implement OnHeadlineSelectedListener");
}
}
use of com.sdsmdg.harjot.MusicDNA.imageloader.ImageLoader in project MusicDNA by harjot-oberai.
the class ViewPlaylistFragment method onAttach.
@Override
public void onAttach(Context context) {
super.onAttach(context);
imgLoader = new ImageLoader(context);
try {
mCallback = (playlistCallbackListener) context;
} catch (ClassCastException e) {
throw new ClassCastException(context.toString() + " must implement OnHeadlineSelectedListener");
}
}
Aggregations