2017-02-14 63 views
0

當我同步我的項目時,出現SrcCompat錯誤。我有一個數字按鈕和4個ImageViews的相對佈局。這裏是ImageViews之一:srcCompat API 22出錯

<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輸出1 4的相同誤差:

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' 

I」已經嘗試:將srcCompat更改爲src(我得到一個意外的命名空間錯誤),將res-auto更改爲命名空間,更改完成-v7版本,重新啓動,使項目,使緩存無效,清理等,如No resource identifier found for attribute 'srcCompat' in package 'learnapp.android.example.com.learnapp'

我正在嘗試定位棒棒糖並最終轉移到API 23.感謝您的建議!

+0

可能重複[未找到屬性'srcCompat'的資源標識符'包'learnapp.android.example。 com.learnapp'](http://stackoverflow.com/questions/38161864/no-resource-identifier-found-for-attribute-srccompat-in-package-learnapp-andr) – Chisko

+0

我嘗試了以前的每個建議鏈接已更改srcCompat,更改了res-auto,更改了appcompatv7版本。沒有工作! – DHHJ

+0

你是否更新了''com.android.support:appcompat-v7:22.2.0''到最新版本?我認爲它是22.2.1 – Chisko

回答

0

我無法讓它工作。我創建了一個新項目並將所有文件和代碼轉移過來,並且它正常工作.........