Cannot instantiate class android.support.v7.widget.SearchView

后端 未结 3 443
我在风中等你
我在风中等你 2021-01-07 20:08

Please somebody help me! I trying add appcompat search view to my project. Unsuccessfully. When I change android.support.v7.widget.SearchView to SearchView (API > 10) everyt

3条回答
  •  迷失自我
    2021-01-07 20:28

    I had a similar probably that appeared on my release builds but not my debug builds when switching over to the v21 support library. Turned out to be an obfuscation problem, and adding this line to my proguard-rules.txt file fixed it:

    -keep class android.support.v7.widget.SearchView { *; }
    

提交回复
热议问题