android.view.View$OnUnhandledKeyEventListener

后端 未结 9 2461
难免孤独
难免孤独 2020-12-08 09:03

I am new to Android Studio and I don\'t get why my toolbar isn\'t shown as described by https://developer.android.com/training/appbar/setting-up I know there are already som

9条回答
  •  粉色の甜心
    2020-12-08 09:48

    Downgrading to sdk 27 as one of the other post suggested came with a new set of problems for me. see: Android - resource linking failed / failed linking references

    Adding an entry to my build.gradle (app level) solved the issue for me.

    dependencies {
        ...
    
        implementation 'androidx.core:core:1.4.0-alpha01'
        ...
    }
    

    Here's where I got the idea to try this: https://github.com/android/sunflower/issues/295#issuecomment-649630057

提交回复
热议问题