android.widget.SearchView cannot be cast to android.support.v7.widget.SearchView

后端 未结 9 1770
感情败类
感情败类 2020-12-05 14:46

I\'m not unsure of why I\'m getting this error. Here\'s the menu in question:



        
9条回答
  •  伪装坚强ぢ
    2020-12-05 14:58

    Add this to your build.gradle file

    implementation 'com.android.support:appcompat-v7:21.0.3'
    

    and then add this

    android.support.v7.widget.SearchView 
    

    instead of

    // remove or replace this line 
    import android.widget.SearchView;
    

    in your activity file

提交回复
热议问题