使用支持库设计v 23.1.1时,属性“borderWidth”已定义错误

时间:2016-01-30 08:35:14

标签: android navigation-drawer android-tablayout

我正在尝试在同一个应用程序中使用导航抽屉和标签布局的组合。但它在尝试导入依赖项时给我一个错误Attribute borderWidth already defined。找到以下错误:

  

错误:(2)属性“borderWidth”已经定义

我的预感是,由于版本冲突,这种情况正在发生。请参阅下面的Gradle文件:

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.0"

packagingOptions {
    exclude 'META-INF/LICENSE'
    exclude 'META-INF/LICENSE-FIREBASE.txt'
    exclude 'META-INF/NOTICE'
}
defaultConfig {
    applicationId "com.iinspin.homeautomation"
    minSdkVersion 16
    targetSdkVersion 20
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'),   'proguard-rules.pro'
    }
}

repositories {
    mavenCentral()
    maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
repositories {
    jcenter()
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':ToggleButtonLib')
compile files('libs/guava-18.0.jar')
compile files('libs/mpandroidchartlibrary-2-1-6.jar')
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:recyclerview-v7:23.1.1'
compile 'com.android.support:cardview-v7:23.1.1'
compile 'com.michaelpardo:activeandroid:3.1.0-SNAPSHOT'
compile 'org.adw.library:discrete-seekbar:1.0.0'
compile 'com.firebase:firebase-client-android:2.4.0'
compile 'com.firebase:firebase-ui:0.1.0'
compile 'com.google.android.gms:play-services-appindexing:8.1.0'
compile 'com.android.support:design:23.1.1'

}

还可以在我的布局文件下面找到:

<android.support.v4.widget.DrawerLayout

xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">


<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout
        android:id="@+id/container_toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <include
            android:id="@+id/toolbar"
            layout="@layout/toolbar" />

        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabMode="scrollable"/>
    </LinearLayout>

    <FrameLayout
        android:id="@+id/container_body"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />

</LinearLayout>


<android.support.v4.view.ViewPager
    android:id="@+id/viewpager"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginTop="95dp"
    app:layout_behavior="@string/appbar_scrolling_view_behavior" />


<fragment
    android:id="@+id/fragment_navigation_drawer"
    android:name="com.iinspin.homeautomation.Design.FragmentDrawer"
    android:layout_width="@dimen/nav_drawer_width"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    app:layout="@layout/fragment_navigation_drawer"
    tools:layout="@layout/fragment_navigation_drawer" />

任何帮助都将被指定。

2 个答案:

答案 0 :(得分:0)

这是因为支持库和编译sdk版本之间的兼容性

版本是23> 0 表示编译SDK必须为23或以上

请验证&#34; ToggleButtonLib&#34;还

答案 1 :(得分:-1)

您需要使用全局搜索在attr.xml中找到borderwidth。然后你可以重构它。