Navomi Shetty
Navomi Shetty

Reputation: 33

ActionBarActivity cannot be resolved on android studio 1.2.1.1

Im unable to extend the ActionBarActivity i've tried all these possible solutions : import actionBar import android.support.v7.app.ActionBar; changed the app theme to light as well as material light tried changing the app theme on the manifest file to Theme.AppCompat.light i installed the repository and library directory in the sdk manager. ive updated it as well . even then i get an error

Upvotes: 0

Views: 57

Answers (1)

OBX
OBX

Reputation: 6114

The class ActionBarActivity is depreciated. Use AppCompatActivity instead. click here for further info.

Upvotes: 2

Related Questions