Couldn't resolve resource @style/Widget.Holo.Light.ActionMode.Inverse

前端 未结 3 1391
臣服心动
臣服心动 2021-02-20 02:16

I\'m creating an Android app in Android Studio. When I open the layout editor, I see that gray \"popup window\" on top of the layout, which says that it

相关标签:
3条回答
  • 2021-02-20 02:54

    Make you project API Level newer.
    For me,the problem occured when my build.gradle content like this:

    compileSdkVersion 16
    buildToolsVersion "23.0.2"
    
    defaultConfig {
        applicationId "com.xiaoguang.xx"
        minSdkVersion 16
        targetSdkVersion 16
        versionCode 1
        versionName "1.0"
    }
    

    After i download the sdk 19 and change build.gradle, the problem was fixed.

    compileSdkVersion 19
    buildToolsVersion "19.1.0"
    
    defaultConfig {
        applicationId "com.xiaoguang.xx"
        minSdkVersion 19
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
    }
    

    change preview'api

    0 讨论(0)
  • 2021-02-20 02:55

    This problem occured to me when updating Android Studio to version 1.1.0 and opening an old project without changing anything.

    For me only changing the preview's rendering API to 19 or above makes the message disappear.

    0 讨论(0)
  • 2021-02-20 03:03

    Hey I faced the same problem and the solution that i figured out was - In android studio Open the Select Theme Dialog and under the All category select NoTitleBar.OverlayActionModes and press okay. The problem would be solved. But it can show up into a dark theme.

    0 讨论(0)
提交回复
热议问题