Babak Fakhriloo
Babak Fakhriloo

Reputation: 2126

LoaderManager.LoaderCallbacks<T> in android 2.1

I am a newbie to Android application development. I am reading the ToDo tutorial. This article is based on android SDK version 3.0 and upper, but I am using sdk 2.1, which does not contain 'LoaderManager' class. I want to know is there any alternative for that class in 2.1 sdk? Is it really needed ?

Regards.

Upvotes: 2

Views: 1465

Answers (1)

user840754
user840754

Reputation: 456

You must add the compatibility library to the project.

http://developer.android.com/sdk/compatibility-library.html

and then

import android.support.v4.app.LoaderManager;

Upvotes: 1

Related Questions