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

后端 未结 6 997
陌清茗
陌清茗 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:33

    the button selector is the cause of the problem .. if you read the remaining of the exception, the root cause will be mentioned .. as resource id can't be found !

    you have to change your button_selector.xml from:

    
    
        
        
    
    

    to:

    
        
        
    
    

    and it will work fine isA.

提交回复
热议问题