android.support.v7.internal.app.WindowsDecorActionBar渲染问题

时间:2015-11-20 17:59:31

标签: android android-layout

你好开发者朋友们!

近几个月我正在研究Android的开发。

但就在上周才出现了这个问题。如何解决下图中的问题?

Android - Rendering Error

2 个答案:

答案 0 :(得分:15)

最新的android api中不推荐使用ActionBar ...如果您需要使用它,请确保您的主题内容如下:

<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">

你可以在以下网址找到:

res > values > styles.xml

答案 1 :(得分:0)

我也遇到了这些错误。

通过将相似版本设置为gradle文件中的字段来解决,如下所示

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.0"

    defaultConfig {
        applicationId "com.intplus.hijackid"
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.0.0'
}

观察版本 compileSdkVersion buildToolsVersion targetSdkVersion 以及支持v7版本

我有appcompat-v7:21.0.3。如上所示的更改解决了问题!