我已将v4和v7-appcompat支持依赖添加到我的pom.xml文件中:
<dependency>
<groupId>android.support</groupId>
<artifactId>compatibility-v7-appcompat</artifactId>
<version>18</version>
<type>apklib</type>
</dependency>
<dependency>
<groupId>android.support</groupId>
<artifactId>compatibility-v7-appcompat</artifactId>
<version>18</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>android.support</groupId>
<artifactId>compatibility-v4</artifactId>
<version>18</version>
</dependency>
现在我想将AppCompat样式添加到我的活动中,但是找不到它。似乎没有从APKLIB加载AppCompat资源。
有谁知道为什么会这样?
谢谢!