我跟踪了这个错误的所有相关问题,我尝试了:
1 。改变预览活动的主题
//但我不需要这个。它只是更改预览操作栏(或其他东西),我不需要这个。 (材料个人app_theme )
2 。更改为API-21。 //这也解决了这个错误,但是我们再也看不到任何操作栏了。
所以,我的Android Studio版本是:
1.2.1.1
我正在使用API-22。
的build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.0"
defaultConfig {
applicationId "test.myapplication"
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.0.0'
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.0"
defaultConfig {
applicationId "test.myapplication"
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.0.0'
}
如何解决这个问题?
答案 0 :(得分:0)
将Android Studio更新为AI 141.1962279
来自 Canary Channel
后我在 Build.gradle 上添加了这个,现在看起来很有用了
编译'com.android.support:support-v4:22.1.1'