srcCompat API 22出错

时间:2017-02-14 16:29:10

标签: android android-studio-2.2

我在同步项目时遇到SrcCompat错误。我有一个带有数字按钮和4个ImageView的相对布局。这是ImageViews之一:

<RelativeLayout 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/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.bigal.datacollecter_v1.MainActivity">
<ImageView
    android:id="@+id/imLogoLL"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:srcCompat="@android:drawable/arrow_down_float"
    android:layout_above="@+id/imRinkL"
    android:layout_alignLeft="@+id/imRinkL"/>

....... 

这是我的build.gradle:

apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion '22.0.1'
defaultConfig {
    applicationId "com.example.bigal.datacollecter_v1"
    minSdkVersion 11
    targetSdkVersion 22
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:22.2.0'

以下是来自gradle控制台输出的4个相同错误中的1个:

C:\Users\bigal\AndroidStudioProjects\DataCollecter_V1\app\src\main\res\layout\activity_main.xml
Error:(766) No resource identifier found for attribute 'srcCompat' in package 'com.example.bigal.datacollecter_v1' 

我已经尝试过:将srcCompat更改为src(我得到意外的命名空间错误),将res-auto更改为命名空间,更改helat-v7版本,重新启动,make project,使缓存无效,清理等等。{{ 3}}

我正在尝试定位Lollipop并最终转向API 23.感谢您的建议!

1 个答案:

答案 0 :(得分:0)

我无法让它发挥作用。我创建了一个新项目并传输了所有文件和代码,并且它正常工作.........