如何通过添加支持来解决问题:设计?

时间:2016-05-04 13:47:44

标签: java android

我需要为此实现TextInputLayout我需要在我的代码中添加此行

compile 'com.android.support:design:23.3.0'

之后我尝试了许多不同的事情来解决它但没有成功(

这是我的构建

buildscript {
repositories {
    jcenter()
}

dependencies {
    classpath 'com.android.tools.build:gradle:2.1.0'
}
}

apply plugin: 'com.android.application'

repositories {
jcenter()
}

dependencies {
---> compile 'com.android.support:design:23.3.0'
compile 'com.android.support:appcompat-v7:24.0.0-alpha2'
compile 'com.facebook.android:facebook-android-sdk:4.0.0'
compile 'com.google.android.gms:play-services:6.5.87'
compile 'com.android.support:cardview-v7:23.3.0'
compile files('libs/svgandroid.jar')
compile 'com.github.bumptech.glide:glide:3.5.2'
compile files('libs/guava-16.0.1.jar')
compile 'com.google.code.gson:gson:2.6.1'
}

// The sample build uses multiple directories to
// keep boilerplate and common code separate from
// the main sample code.
List<String> dirs = [
    'main',     // main sample code; look here for the interesting stuff.
    'common',   // components that are reused by multiple samples
    'template'] // boilerplate code that is generated by the sample template process

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

repositories {
    mavenCentral()
}

defaultConfig {
    minSdkVersion 21
    targetSdkVersion 21
}

compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_7
    targetCompatibility JavaVersion.VERSION_1_7
}

sourceSets {
    main {
        dirs.each { dir ->
            java.srcDirs "src/${dir}/java"
            res.srcDirs "src/${dir}/res"
        }
    }
    androidTest.setRoot('tests')
    androidTest.java.srcDirs = ['tests/src']
}
}

某些资源已经定义并显示错误。这是什么意思?

我做错了什么?

окно 3

enter image description here

现在根据@Pravin的回答我解决了一个问题,它正在毫无错误地制作一个gradle!但现在当我尝试启动项目时,我还有另一个错误...

enter image description here

3 个答案:

答案 0 :(得分:0)

尝试使用app compat版本23.3.0

答案 1 :(得分:0)

将此circularProgress替换为此

<declare-styleable name="CircularProgress">
        <attr name="borderWidth1" format="dimension" />
 </declare-styleable>

以及使用borderWidth

进度的用户borderWidth1

答案 2 :(得分:0)

尝试更改你的appcompact:编译'com.android.support:appcompat-v7:24.0.0-alpha2'来编译'com.android.support:appcompat-v7:23.1.0'并构建你的gradle, 如果它不起作用,请尝试清理项目