AppCompatActivity无法解析为某种类型

时间:2015-10-02 18:37:24

标签: android android-support-library android-appcompat appcompatactivity

我正在尝试将Theme添加到我的项目中。它需要appcompat v7。

我根据Android开发者网站中提到的步骤添加了支持库。经过大量搜索,我发现支持库v4将与支持库v7发生冲突。

所以我从我的项目中删除了android库v4。因此,我现在得到了NotificationCompa t错误(import android.support.v4.app.NotificationCompat; import android.support.v4.app.NotificationCompat.Builder;)。

我该怎么办?请有人帮我解决问题。提前致谢

1 个答案:

答案 0 :(得分:0)

  

我发现支持库v4将与支持库v7冲突

这是错误的。

AppCompat v7与support-v4具有依赖关系 你可以查看pom文件。

 <groupId>com.android.support</groupId>
 <artifactId>appcompat-v7</artifactId>
 <version>23.0.1</version>
 <packaging>aar</packaging>
 <dependencies>
    <dependency>
      <groupId>com.android.support</groupId>
      <artifactId>support-v4</artifactId>
      <version>23.0.1</version>
      <type>aar</type>
      <scope>compile</scope>
    </dependency>
  </dependencies>

您可以毫无问题地使用appcompat和support-v4。