android.view.InflateException: Binary XML file line #0: Error inflating class Button

后端 未结 6 998
陌清茗
陌清茗 2021-02-12 14:49

I am following a course on Audacity, and decided to type out all the code, but then I run into an error when I try run the app.

I get the following error:



        
6条回答
  •  温柔的废话
    2021-02-12 15:38

    Maybe this help anyone > I got similar crash

    InflateException: Binary XML file line #0: Error inflating class EditText

    in Android 8.0 and 8.1 in release apk due to xml fonts cause I didn't use latest support libs, I update support library version and it's fixed.

    xml having

    
    

    My gradle configs

    BUILD_TOOLS_VER = '26.0.2'
    
    TARGET_SDK_VER = 26
    MIN_SDK_VER = 19
    
    SUPPORT_LIBS_VER = '26.1.0' -> '27.0.2' (fix here)
    GOOGLE_SERVICES_VER = '11.4.0' -> '11.8.0'
    

提交回复
热议问题