在所有android標記中獲取未知屬性錯誤。未知屬性android:layout_width,layout_height,id,gravity,layout_gravity,padding
在佈局XML,自動建議沒有顯示所有屬性(如layout_width,layout_height,定向,定向&所有其他的Android屬性。)
下面是一個快照
- 乾淨的構建&重建
- 刪除.idea文件
- 已失效緩存/重啓..選項
- 開啓省電模式。
SDk是最新的。
在應用級Gridle
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.example.abhishek.ondemandservice"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
應用水平Gride。
buildscript {
repositories {
maven { url "http://dl.bintray.com/populov/maven" }
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
maven { url "http://dl.bintray.com/populov/maven" }
jcenter()
mavenCentral()
}
}
感謝Adance^_^:)
'類路徑「com.android.tools.build:gradle這個:2.0.0-beta2'' –
爲什麼我用舊版本,如果它工作完美在其他系統和它不工作的方式。 – abhishek