No resource found that matches the given name (at 'paddingBottom' with value '@dimen/ activity_vertical_margin')

后端 未结 3 1767
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-03 07:45

I was trying to build a navigation drawer for which I copied code from some website and I am getting this error in one of the XMLs.

No resource found

3条回答
  •  -上瘾入骨i
    2021-01-03 08:33

    In some project templates you find app/src/main/res/values/dimens.xml with only one value:

    
        16dp
    
    

    So you need to add the missing ones to that file:

    
        16dp
        16dp
        16dp
    
    

    Hope this helps.

提交回复
热议问题