在Android Studio 0.5.8中向Action Bar Sherlock添加依赖项后出错

Mil*_*nor 17 android actionbarsherlock android-studio

好的,我知道这个问题已被问过很多..而且,我也尝试过在SO中发布的几种方法.但似乎没有一个对我有用.

那么,我就是这样做的.我在gradle文件中的依赖项中添加了这行代码:

compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
Run Code Online (Sandbox Code Playgroud)

但是当我尝试使用gradle同步我的项目时,它给了我这些错误:

Gradle invocation completed successfully with 75 error(s) in 30 sec
Run Code Online (Sandbox Code Playgroud)

这些是错误:

D:\RandomProjects\SwipeExperiment\SwipeExperiment\build\exploded-aar\com.android.support\appcompat-v7\19.1.0\res\values\values.xml
Error:Attribute "titleTextStyle" has already been defined
Error:Attribute "subtitleTextStyle" has already been defined
Error:Attribute "divider" has already been defined
Error:Attribute "background" has already been defined
Error:Attribute "backgroundSplit" has already been defined
Error:Attribute "actionDropDownStyle" has already been defined
Error:Attribute "dropdownListPreferredItemHeight" has already been defined
Error:Attribute "popupMenuStyle" has already been defined

D:\RandomProjects\SwipeExperiment\SwipeExperiment\build\exploded-aar\com.actionbarsherlock\actionbarsherlock\4.4.0\res\values\values.xml
Error:Attribute "navigationMode" has already been defined
Error:Attribute "displayOptions" has already been defined
Error:Attribute "title" has already been defined
Error:Attribute "subtitle" has already been defined
Error:Attribute "icon" has already been defined
Error:Attribute "logo" has already been defined
Error:Attribute "backgroundStacked" has already been defined
.
.
.
Error:Attribute "windowActionBarOverlay" has already been defined
Error:Attribute "windowSplitActionBar" has already been defined
Error:Attribute "listPopupWindowStyle" has already been defined
Error:Attribute "activityChooserViewStyle" has already been defined
Run Code Online (Sandbox Code Playgroud)

Yar*_*lyk 48

你的项目取决于appcompat-v7ActionBarSherlock.它们都提供相同的功能并定义相同的样式属性 - 这些属性是冲突的.

删除ActionBarShelockappcompat-v7库.

我建议使用ActionBar来自appcompat-v7而非ActionBarSherlock.

支持库功能.程序兼容性

添加操作栏