我從Android Studio中升級0.5至0.8 現在我的問題成堆,我解決了大部分,但現在我得到這個錯誤的Android升級後失蹤layout_alignParentStart
Error:(12) No resource identifier found for attribute 'layout_alignParentStart' in package 'android'
我不知道爲什麼它沒有layout_alignParentStart了嗎?!
我在這裏錯過了什麼?
我從Android Studio中升級0.5至0.8 現在我的問題成堆,我解決了大部分,但現在我得到這個錯誤的Android升級後失蹤layout_alignParentStart
Error:(12) No resource identifier found for attribute 'layout_alignParentStart' in package 'android'
我不知道爲什麼它沒有layout_alignParentStart了嗎?!
我在這裏錯過了什麼?
我有同樣的問題,我的問題是compileSdkVersion,我從16改成20和它的作品。
我給你我的build.gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 20
buildToolsVersion "19.1.0"
defaultConfig {
applicationId "mypackage"
minSdkVersion 15
targetSdkVersion 20
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:20.+'
// You must install or update the Support Repository through the SDK manager to use this dependency.
// You must install or update the Support Repository through the SDK manager to use this dependency.
compile 'com.android.support:support-v4:20.+'
// You must install or update the Support Repository through the SDK manager to use this dependency.
compile 'com.android.support:support-v13:20.+'
}
由於API級別17,Android已經對RTL佈局,如一些新的屬性:
但有些設備有可能不支持這些屬性,並導致異常
刪除所有這些*啓動/ *結束屬性可以解決這個問題
由於特殊的ROM,我會檢查這一點。爲了避免這些問題,我必須回到舊版本。 – asmgx