Skip to content Skip to sidebar Skip to footer

Issue With Actionbaractivitydelegate Class.....app Doesn't Run

Hello i hope someone can help me with his I was planning to put an action bar in my test app, so I did exactly as said in the developers API guide. But when i tried to compile it

Solution 1:

I had that error, and the problem was that I hadn't added the lib with the resources. You can't just add the jars, because it will not add the resources. You have to create a project from thoses libs and then add the project as a library to your own project.

Here's the instructions how to:

Go to this link and go to the "Adding libraries with resources" section

http://developer.android.com/tools/support-library/setup.html

This fixed the problem for me.

Cheers

Solution 2:

I had the same issue about 20 minutes ago. I fixed it in the Manifest by changing the theme from "AppTheme" to "Theme.AppCompat"

<application...android:theme="@style/Theme.AppCompat" >

Solution 3:

I'm using Android-Studio 1.0.2 and I had the same problem. I fixed the issue removing compile 'com.google.android.gms' from build.gradle. Not too sure about the cause of the problem.

Solution 4:

I spent a whole day trying to fix this. I am using eclipse on debian. I ended up adding the library android-support-v7-appcompt and my app into one working set and built the "working set" to resolve the issue. This eventually created the necessary files in android-support-v7-appcompat/bin folder.

Post a Comment for "Issue With Actionbaractivitydelegate Class.....app Doesn't Run"