无法使用Android Studio从Android支持库导入ActionBarCompat

时间:2013-10-17 03:20:14

标签: android android-studio android-actionbar-compat

我正在使用Android Studio并跟随this article from google以及some other articles讨论如何使用新的ActionBarCompat。

我已经在Android SDK Manager中下载了支持库(Rev。18),并在我的 build.gradle 中添加了以下内容

dependencies {
compile 'com.android.support:support-v4:18.0.0'
compile 'com.android.support:appcompat-v7:18.0.0'
}

现在我正在尝试导入支持库API并在我的代码中扩展ActionBarActivity, 然而,这就是出现的情况

enter image description here enter image description here

这不应该是什么

import android.support.v7.app.ActionBar;
import android.support.v7.app.ActionBarActivity;

任何帮助?

1 个答案:

答案 0 :(得分:6)

我有同样的问题。我按照这一步在Android Studio中解决了它 - 工具 - > Android - >使用Gradle文件同步项目

enter image description here

修改 对不起,我忘了添加这个: 在使用Gradle文件同步项目之后,请按照以下步骤操作:

  • 右键单击项目,然后选择打开模块设置

enter image description here

  • 之后,选择依赖项选项卡

enter image description here

  • 最后 - 选择你的图书馆:

enter image description here

这应该有用。