-2

One screenshot is one thousand words:

Hell of errors

What Am I doing so wrong guys? Is it my face it does not like?

Updates.... When I tried a new project with both "Target SDK" and "Compile With:" set to "API 23: Android 6.0" the Problem Errors disappeared but I get errors in the Console tab like this:

error heaven

Thanasis
  • 329
  • 4
  • 8
  • 3
    Is this project aware of the Android SDK? Should be linked in as a Library somewhere. – Thilo Jan 13 '16 at 02:17
  • 2
    I starting development on eclipse but because of such errors I switched to android studio, it's much better and I strongly recommend it to you. – SaNtoRiaN Jan 13 '16 at 02:32
  • http://stackoverflow.com/questions/26530415/error-in-styles-base-xml-file-android-app-no-resource-found-that-matches-the/27243716#27243716 – Krishna Satwaji Khandagale Jan 13 '16 at 02:38
  • [Refer this](http://stackoverflow.com/questions/29877692/why-was-actionbaractivity-deprecated?lq=1) @Thanasis – Vinoth Vino Jan 13 '16 at 02:39
  • Hi people. Thanks for your replies. I updated info with another screenshot above.... – Thanasis Jan 13 '16 at 03:49
  • 1
    so apparently you just started working on android but for some reason you decided to use a tool that has been deprecated for more than a year instead of the current recommended IDE? I'm not even sure where you found the eclipse plugin... – njzk2 Jan 13 '16 at 04:33
  • like @njzk2 mentioned above , it woukd better using Android Studio instead Eclipse if you are starting to learn Android. – Lazy Ninja Jan 13 '16 at 04:38
  • @Thanasis, just switch to Android Studio – Pankaj Nimgade Jan 13 '16 at 05:11
  • I have switched to Android Studio guys. Couldn't bother more. This year there are many Android Studio tutorials and books coming out so I don't find the reason why I should bother more with eclipse. – Thanasis Jan 14 '16 at 17:49

2 Answers2

0

You are using ActionBarActivity, and you didn't included it.

But, ActionBarActivity was deprecated, because Toolbar was introduced.
See this: Why was ActionBarActivity deprecated

If you still want to use ActionBarActivity for study,
See this to add appcompat7: https://stackoverflow.com/a/20523124/850347

Community
  • 1
  • 1
Stanley Ko
  • 3,383
  • 3
  • 34
  • 60
0

Import appcompat library and clean and rebuild the project.

Jas
  • 3,207
  • 2
  • 15
  • 45
  • Thank you brother. I couldn't bother more. There are so many books and videos on android coming out this year so I switched to Android Studio. – Thanasis Jan 14 '16 at 17:52