DrawerLayout must be measured with MeasureSpec.EXACTLY error

前端 未结 12 2453
独厮守ぢ
独厮守ぢ 2020-12-03 16:54

I am trying to implement a Navigation drawer, but I keep getting this error. I saw the similar questions but did not work for me. I have the following layout activity_main2.

12条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-03 17:16

    My DrawerLayout was inside a LinearLayout:

    
    
            
    
             
    
            
            
    
    

    Then I solved the problem by changing the layout_height="wrap_content" to layout_height="match_parent" of LinearLayout.So the code is:

    
    

提交回复
热议问题