今日、私はAndroidスタジオをバージョンアップしました。 3.0およびそれ以降、私はレイアウトエディタでエラーが表示されます。Androidスタジオ3.0へのアップグレードレンダリングエラー
これは私のGradleファイルです:
apply plugin: 'com.android.application'
android {
def version = "2.4"
def milestone = "1"
def build = "5"
def name = "WOMS" + "v" + version
compileSdkVersion 23
buildToolsVersion '26.0.2'
defaultConfig {
applicationId "hr.aprox_it.womsmobile"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.5"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
applicationVariants.all { variant ->
appendVersionName(variant, defaultConfig)
}
}
}
sourceSets { main { java.srcDirs = ['src/main/java', 'src/main/java/2'] } }
}
def appendVersionName(variant, defaultConfig) {
variant.outputs.each { output ->
if (output.zipAlign) {
//def file = output.outputFile
//def fileName = file.name.replace("app-debug.apk", "WomsMobile-" + defaultConfig.versionName + "v.apk")
//output.outputFile = new File(file.parent, fileName)
}
//def file = output.packageApplication.outputFile
//def fileName = file.name.replace("app-debug.apk", "WomsMobile-" + defaultConfig.versionName + "v.apk")
//output.packageApplication.outputFile = new File(file.parent, fileName)
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:design:23.4.0'
testCompile 'junit:junit:4.12'
}
誰がこの問題に直面していますか? Android StudioとSDKの各アップデートで古いプロジェクトに問題があるようです。
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
にし、その解決の問題は...私は推測する...何のあらゆるありません:
UPDATEのstyles.xmlで
私は変わっていましたより多くのレンダリングエラー。彼らがそれを持っていたら、彼らがこの問題をどのように解決したかを他の人から聞きたいと思います。
したがって、alignParentのものに線形レイアウトはありませんか? – Xenolion