Rendering Problems Couldn't resolve resource @id/search_edit_frame

后端 未结 6 1382
时光说笑
时光说笑 2021-02-20 17:10

Rendering Problems Couldn\'t resolve resource @id/search_edit_frame

This is the rendering error I\'m getting in my xml file. I think it has

6条回答
  •  我寻月下人不归
    2021-02-20 17:51

    To resolve this issue, provide an

    android:id="@+id/search_edit_frame"
    

    attribute to a parent view such as

    android.support.design.widget.AppBarLayout
    

    or any ViewGroup that is parent to your SearchView.

    For example:

    
    
      
    
    
    

提交回复
热议问题